/* =========================================================
   Susie, maison d'événements — Design System
   Charte : olive (principal), camel, beige, crème, encre
   Polices : Safira March (titres) / Montserrat (texte)
   ========================================================= */

/* ---- Police titre : Safira March ----
   ⚠️ LICENCE : le .ttf fourni est "Personal Use Only".
   Acheter la licence commerciale AVANT mise en prod, sinon
   retirer ce @font-face (le fallback Cormorant Garamond prend le relais). */
@font-face {
  font-family: "Safira March";
  src: url("../fonts/SafiraMarch.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  /* Couleurs de marque */
  --olive: #6f7a52;        /* couleur principale */
  --olive-dark: #5b6443;
  --camel: #a48161;
  --beige: #e3d5c8;
  --cream: #fef6ee;        /* fond */
  --ink: #353432;          /* texte */
  --white: #ffffff;

  /* Dérivés */
  --ink-soft: #5c5a56;
  --line: #ece4da;
  --sand: #faf5ee;     /* beige doux (très clair) : fond des sections accent */
  --sand-light: #faf4ec; /* beige très clair : carré du bouton menu */

  /* Typo */
  --font-title: "Safira March", "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Échelle */
  --container: 1400px;
  --gutter: max(24px, calc((100vw - 1400px) / 2 + 24px));
  --radius: 14px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px rgba(53, 52, 50, 0.10);
  --shadow-sm: 0 6px 20px rgba(53, 52, 50, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.3s var(--ease);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
  overflow-x: clip; /* clip (pas hidden) : empêche le scroll horizontal SANS casser position:sticky */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typographie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--camel);
  font-weight: 600;
  margin-bottom: 1.1rem;
  display: block;
}
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }
em, .italic { font-style: italic; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--sand { background: var(--sand); }
.section--snow { background: #fafafa; }
.section--compact { padding-top: clamp(48px, 5vw, 76px); padding-bottom: clamp(48px, 5vw, 76px); }
.section--cream2 { background: var(--sand); } /* alias rétro-compat */
.section--olive { background: var(--olive); color: var(--cream); }
.section--olive h2, .section--olive h3 { color: var(--cream); }
.section--olive .eyebrow { color: var(--beige); }
.text-center { text-align: center; }
.section__head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body); font-weight: 600;
  font-size: 15px; letter-spacing: 0.02em; text-transform: none;
  padding: 0.95em 2.1em; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: var(--transition); white-space: nowrap;
}
.btn--primary { background: var(--olive); color: var(--white); }
.btn--primary:hover { background: var(--olive-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--outline { background: transparent; border-color: currentColor; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cta-band .btn--light { background: var(--white); color: var(--ink); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost-light { background: transparent; border-color: var(--white); color: var(--white); }
.btn--ghost-light:hover { background: var(--cream); color: var(--olive); }
.btn__ico { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.btn .arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-row--center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header__bar { display: flex; align-items: center; justify-content: space-between; height: 96px; gap: 20px; }
.brand img { height: 60px; width: auto; transition: height var(--transition); }
.nav { display: flex; align-items: center; gap: 46px; }
.nav a {
  font-size: 15px; letter-spacing: 0.01em; text-transform: none;
  font-weight: 500; color: var(--ink); transition: color var(--transition); position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: var(--camel); transition: width var(--transition);
}
.nav a:hover { color: var(--camel); }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; align-items: flex-end; justify-content: center; flex-direction: column; gap: 5px;
  width: 48px; height: 48px; border-radius: 14px; background: transparent;
  border: none; cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}
/* Morph hamburger -> croix quand le menu est ouvert */
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Menu mobile (plein écran, façon carte) ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 150; display: none; flex-direction: column; }
.mobile-menu.is-open, .mobile-menu.is-closing { display: flex; }
body.menu-open { overflow: hidden; }
.mobile-menu__body {
  flex: 1; background: transparent;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 96px 20px 24px; overflow-y: auto;
}
.mobile-menu__card { background: var(--white); border-radius: 24px; padding: 8px 22px 22px; box-shadow: var(--shadow); }
.m-link {
  display: block; font-size: 1.1rem; font-weight: 500; color: var(--ink);
  padding: 15px 2px; transition: color var(--transition);
}
.m-link:hover, .m-link:focus { color: var(--camel); }
.m-link.is-active { text-decoration: underline; text-decoration-color: var(--camel); text-decoration-thickness: 1.5px; text-underline-offset: 6px; }
.mobile-menu__cta { margin-top: 15px; width: 100%; justify-content: center; font-size: 1.1rem; }

/* Animations du menu mobile (ouverture + fermeture) */
@keyframes menuScrimIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes menuCardIn { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
@keyframes menuScrimOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes menuCardOut { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(-14px); } }
.mobile-menu.is-open .mobile-menu__body { animation: menuScrimIn 0.25s ease both; }
.mobile-menu.is-open .mobile-menu__card { animation: menuCardIn 0.34s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both; }
.mobile-menu.is-closing .mobile-menu__body { animation: menuScrimOut 0.24s ease both; }
.mobile-menu.is-closing .mobile-menu__card { animation: menuCardOut 0.26s cubic-bezier(0.4, 0, 1, 1) both; }
@media (prefers-reduced-motion: reduce) {
  .mobile-menu.is-open .mobile-menu__body, .mobile-menu.is-open .mobile-menu__card,
  .mobile-menu.is-closing .mobile-menu__body, .mobile-menu.is-closing .mobile-menu__card { animation: none; }
}

@media (min-width: 761px) { .mobile-menu { display: none !important; } body.menu-open { overflow: auto; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 74svh; display: flex; align-items: center; text-align: center; color: var(--cream); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(26,25,23,0.55); }
.hero__inner { max-width: 780px; margin: 0 auto; padding-top: 48px; padding-bottom: 48px; }
.hero .eyebrow { color: var(--white); }
.hero h1 { color: var(--white); }
.hero p { font-size: 1.2rem; margin: 1.5rem auto 0; max-width: 46ch; color: var(--white); }
.hero .btn-row { justify-content: center; }
@media (max-width: 760px) {
  .hero { min-height: 0; }
  .hero__inner { padding: 96px 0 72px; }
}

/* ---------- Bénéfices ---------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.benefit { text-align: center; }
.benefit__icon { width: 54px; height: 54px; margin: 0 auto 22px; color: var(--camel); transition: transform 0.35s var(--ease); }
.benefit:hover .benefit__icon { transform: scale(1.1); }
.benefit__icon svg { width: 100%; height: 100%; stroke: var(--camel); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.benefit__icon svg * { vector-effect: non-scaling-stroke; }
.benefit h3 { color: var(--camel); margin-bottom: 14px; font-size: 1.4rem; }
.benefit p { font-size: 0.96rem; color: var(--ink-soft); }
.benefit strong { color: var(--ink); }

/* ---------- Bloc image + texte (split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split--reverse .split__media img { aspect-ratio: 4 / 3; }
.split__media--arch img { border-radius: 50% 50% 0 0 / 22% 22% 0 0; aspect-ratio: 3/4; }
.split__body p + p { margin-top: 1.1rem; }
.img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  background: var(--white); border: 2px dashed rgba(164, 129, 97, 0.45);
  color: var(--camel); text-align: center; padding: 24px;
}
.img-placeholder svg { width: 42px; height: 42px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.img-placeholder span { font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }

/* ---------- Étapes ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; counter-reset: step; position: relative; }
.steps::before { content: ""; position: absolute; top: 31px; left: 12%; right: 12%; height: 2px; background: rgba(164, 129, 97, 0.35); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--camel); color: var(--cream);
  font-family: var(--font-title); font-size: 1.8rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; padding-top: 0.12em;
}
.step__bar { width: 46px; height: 2px; background: var(--camel); margin: 0 auto 18px; opacity: 0.5; }
@media (min-width: 981px) { .step__bar { display: none; } }
.step h3 { color: var(--camel); font-size: 1.4rem; margin-bottom: 12px; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Cartes inspirations / univers ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover img { transform: scale(1.06); }
.card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(53,52,50,0.7) 100%); }
.card__label { position: absolute; left: 22px; bottom: 22px; z-index: 2; color: var(--cream); }
.card__label .u { font-family: var(--font-title); font-size: 1.5rem; }

/* ---------- Carrousel (univers d'inspiration, full-bleed, swipable) ---------- */
.carousel {
  width: 100vw; margin-left: calc(50% - 50vw);
  overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel__track { display: flex; }
.carousel .card, .carousel .quote { flex: 0 0 clamp(258px, 70vw, 330px); cursor: default; margin: 0 24px 0 0; }
.carousel__track > .card:first-child, .carousel__track > .quote:first-child { margin-left: var(--gutter); }
.carousel__track > .card:last-child, .carousel__track > .quote:last-child { margin-right: 0; }
.carousel__track::after { content: ""; flex: 0 0 var(--gutter); }
/* Avis en carrousel : cartes de hauteur égale, bordure (pas d'ombre qui se clip) */
.carousel .quote { align-self: stretch; box-shadow: none; border: 1px solid var(--line); }

/* Contrôles : barre de progression + flèches (PC) */
.carousel-controls { display: flex; align-items: center; gap: 28px; margin-top: 26px; }
.carousel-progress { position: relative; flex: 1; height: 2px; background: var(--line); border-radius: 999px; }
.carousel-progress__bar { position: absolute; top: 0; left: 0; height: 100%; width: 30%; background: var(--camel); border-radius: 999px; }
.carousel-arrows { display: flex; gap: 10px; }
.carousel-arrow {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line);
  background: var(--white); color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
}
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-arrow:hover { background: var(--olive); color: var(--white); border-color: var(--olive); }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; }
@media (max-width: 760px) { .carousel-arrows { display: none; } }

/* ---------- Parcours (mariage / pro) ---------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.path { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 480px; display: flex; align-items: flex-end; }
.path img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.7s var(--ease); }
.path::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(33,32,30,0.05) 0%, rgba(33,32,30,0.3) 45%, rgba(33,32,30,0.82) 100%); }
.path:hover img { transform: scale(1.05); }
.path__body { position: relative; z-index: 2; padding: clamp(28px, 3vw, 44px); color: var(--white); }
.path__body h3, .path__body h2 { color: var(--white); font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 12px; }
.path__body p { color: rgba(255,255,255,0.92); font-size: 1rem; margin-bottom: 24px; max-width: 38ch; }

/* ---------- Catégories (showcase, non cliquable) ---------- */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.cat__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; margin-bottom: 18px; }
.cat__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.cat:hover .cat__img img { transform: scale(1.05); }
.cat h3 { font-size: 1.3rem; margin-bottom: 6px; }
.cat p { font-size: 0.92rem; color: var(--ink-soft); }

@media (max-width: 880px) {
  .paths { grid-template-columns: 1fr; }
  .path { min-height: 380px; }
  .cats { grid-template-columns: 1fr 1fr; gap: 30px 22px; }
}

/* ---------- Pastilles "pourquoi" (mini) ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 28px; }
.pill { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.pill svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.4; }

/* ---------- Témoignages ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.quote__stars { color: var(--camel); letter-spacing: 3px; margin-bottom: 14px; }
.quote p { font-size: 0.98rem; font-style: italic; color: var(--ink); }
.quote__author { margin-top: 18px; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; }
.quote__src { display: block; font-weight: 400; font-size: 0.78rem; letter-spacing: 0; color: var(--ink-soft); margin-top: 3px; }

/* ---------- Marquee avis (auto-défilant, pleine largeur) ---------- */
.marquee {
  width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track { display: flex; gap: 24px; width: max-content; align-items: flex-start; animation: marquee 45s linear infinite; will-change: transform; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee .quote { flex: 0 0 clamp(280px, 82vw, 350px); margin: 4px 0; box-shadow: none; border: 1px solid var(--line); }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
/* Mobile : on retire le masque dégradé (mask + grand élément animé = bug de rendu/blanc sur iOS) */
@media (max-width: 640px) { .marquee { -webkit-mask-image: none; mask-image: none; } }

/* ============================================================
   PAGE MARIAGES — composants
   ============================================================ */

/* Hero split (texte + image arrondie) */
.page-hero { padding: clamp(64px, 8vw, 120px) 0; }
.page-hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.page-hero__body { max-width: 560px; }
.page-hero__body p { font-size: 1.12rem; color: var(--ink-soft); margin: 1.4rem 0 2.2rem; }
.page-hero__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
@media (max-width: 860px) {
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__media { order: -1; }
  .page-hero__media img { aspect-ratio: 16 / 10; }
}

/* Trust badges (bande olive, icône au-dessus) */
.trust-badges { background: var(--olive); color: var(--cream); }
.trust-badges__row { display: flex; flex-wrap: wrap; justify-content: space-around; gap: clamp(24px, 5vw, 56px); padding: 40px 0; }
.trust-badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; flex: 1; min-width: 150px; }
.trust-badge svg { width: 34px; height: 34px; stroke: var(--white); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.trust-badge b { font-family: var(--font-title); font-weight: 400; font-size: 1.35rem; color: var(--white); display: block; line-height: 1.1; }
.trust-badge span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.82); }
@media (max-width: 620px) { .trust-badges__row { gap: 30px 20px; padding: 32px 0; } .trust-badge { flex: 0 0 42%; min-width: 0; } }

/* Bento réalisations */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; grid-auto-flow: dense; gap: 16px; }
.bento__item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.bento__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.bento__item:hover img { transform: scale(1.06); }
.bento__item--big { grid-column: span 2; grid-row: span 2; }
.bento__item--tall { grid-row: span 2; }
.bento__item--wide { grid-column: span 2; }
@media (max-width: 760px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 12px; }
  .bento__item--big { grid-column: span 2; grid-row: span 2; }
}

/* Domaines partenaires */
.partners__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 22px; }
.partner { padding: 16px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); font-family: var(--font-title); font-size: 1.2rem; color: var(--ink-soft); }

/* Ebook (lead magnet) */
.ebook__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.ebook__cover { aspect-ratio: 3 / 4; border-radius: var(--radius); background: linear-gradient(160deg, var(--olive), var(--olive-dark)); color: var(--cream); display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 34px; box-shadow: var(--shadow); }
.ebook__cover .eyebrow { color: var(--beige); }
.ebook__cover h3 { color: var(--white); font-size: 1.6rem; }
.ebook__cover p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.ebook-form { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.8rem; max-width: 520px; }
.ebook-form input { flex: 1; min-width: 220px; padding: 0.95em 1.3em; border: 1.5px solid var(--line); border-radius: 999px; font-family: var(--font-body); font-size: 15px; background: var(--white); color: var(--ink); }
.ebook-form input:focus { outline: none; border-color: var(--olive); }
.ebook__note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.9rem; }

/* Liste d'avantages avec puces check */
.check-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.98rem; color: var(--ink); line-height: 1.45; }
.check-list svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.check-list svg circle { fill: var(--olive); }
.check-list svg path { fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* Couverture ebook (mockup livre) — section teaser Mariages */
/* Livre ebook (couverture mockup) */
.ebook-cover-wrap { display: flex; align-items: center; justify-content: center; padding: 10px 0; }
.ebook-cover-img { display: block; width: 100%; max-width: 540px; height: auto; margin: 0 auto; }
@media (max-width: 760px) { .ebook__grid { grid-template-columns: 1fr; } .ebook__cover { max-width: 260px; margin: 0 auto; } }

/* Bento extensible (voir plus + dégradé) */
.bento-wrap { position: relative; }
.bento-wrap .bento { max-height: 560px; overflow: hidden; transition: max-height 0.7s var(--ease); }
.bento-wrap.is-expanded .bento { max-height: 4000px; }
.bento-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 200px; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--white) 78%); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 8px; }
.bento-wrap.is-expanded .bento-fade { display: none; }

/* Lightbox (galerie plein écran) */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; background: rgba(26, 25, 23, 0.93); align-items: center; justify-content: center; }
.lightbox.is-open { display: flex; }
body.lb-open { overflow: hidden; }
.lightbox__img { max-width: 88vw; max-height: 86vh; border-radius: var(--radius); box-shadow: 0 24px 70px rgba(0,0,0,0.55); }
.lightbox__btn { position: absolute; background: rgba(255,255,255,0.14); border: none; color: #fff; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.lightbox__btn:hover { background: rgba(255,255,255,0.28); }
.lightbox__btn svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lightbox__close { top: 22px; right: 22px; width: 48px; height: 48px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; }
.lightbox__nav--prev { left: 22px; }
.lightbox__nav--next { right: 22px; }
@media (max-width: 640px) { .lightbox__nav { width: 44px; height: 44px; } .lightbox__nav--prev { left: 10px; } .lightbox__nav--next { right: 10px; } .lightbox__img { max-width: 94vw; } }

/* Partenaire fleuriste (Hugo) */
.partner-hugo { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.partner-hugo__logo { width: 120px; height: 120px; border-radius: 50%; border: 1px dashed rgba(164,129,97,0.55); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--camel); font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 12px; flex-shrink: 0; }
.partner-hugo__text { max-width: 460px; }
.partner-hugo__text h3 { font-size: 1.6rem; margin: 6px 0 10px; }
.partner-hugo__text p { color: var(--ink-soft); }
@media (max-width: 600px) { .partner-hugo__text { text-align: center; } }
.hugo-logo { display: inline-flex; align-items: center; justify-content: center; margin-top: 1.7rem; padding: 14px 24px; background: rgba(255,255,255,0.1); border: 1px dashed rgba(255,255,255,0.5); border-radius: var(--radius); color: var(--cream); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* Badge partenaire Hugo posé sur l'image de l'offre */
.hugo-host { position: relative; }
.hugo-badge { position: absolute; left: -20px; bottom: 28px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; width: 166px; background: var(--white); border-radius: 14px; padding: 16px; box-shadow: 0 18px 42px rgba(53,52,50,0.22); }
.hugo-badge__cap { margin: 0; font-family: var(--font-body); font-size: 0.8rem; line-height: 1.45; color: var(--ink-soft); }
.hugo-badge .hugo-badge__logo-img { width: 130px; height: auto; aspect-ratio: auto; object-fit: contain; box-shadow: none; border-radius: 0; display: block; margin: 0; }
@media (max-width: 600px) { .hugo-badge { left: 10px; bottom: 10px; width: 150px; padding: 14px; } .hugo-badge .hugo-badge__logo-img { width: 118px; } }

/* Photo encadrée et légèrement inclinée (section Notre histoire) */
.histoire-photo { width: fit-content; margin-inline: auto; }
.tilt-frame__cap { margin-top: 14px; padding-bottom: 4px; text-align: center; font-family: var(--font-title); font-style: italic; font-size: 1.15rem; color: var(--ink); line-height: 1.2; }
.tilt-frame { display: inline-block; background: var(--white); padding: 14px 14px 18px; border-radius: 4px; box-shadow: 0 26px 60px rgba(0,0,0,0.3); transform: rotate(-3deg); max-width: 380px; transition: transform 0.5s var(--ease); }
.tilt-frame:hover { transform: rotate(-1deg); }
.tilt-frame__crop { overflow: clip; border-radius: 2px; aspect-ratio: 4 / 5; }
.tilt-frame__crop img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; transform: rotate(-1.5deg) scale(2.05); transform-origin: 50% 26%; }
@media (max-width: 600px) { .tilt-frame { transform: rotate(-2deg); max-width: 300px; } }

/* Variante 5 étapes */
.steps--5 { grid-template-columns: repeat(5, 1fr); gap: 22px; }
@media (max-width: 980px) { .steps--5 { grid-template-columns: repeat(2, 1fr); gap: 44px 24px; } .steps--5 .step:nth-child(5) { grid-column: 1 / -1; } }

/* ---------- CTA final ---------- */
.cta-final { position: relative; color: var(--cream); overflow: hidden; }
.cta-final__bg { position: absolute; inset: 0; z-index: 0; }
.cta-final__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(26,25,23,0.62); }
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 { color: var(--white); }
.cta-final p { color: rgba(255,255,255,0.92); }
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 1.2rem; }
.cta-band p { max-width: 56ch; margin: 0 auto 2rem; color: var(--ink); }

/* ---------- Footer (olive, façon luxe) ---------- */
.site-footer { background: var(--olive); color: var(--white); padding: 60px 0 0; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-intro { font-size: 15px; max-width: 34ch; color: var(--white); }
.footer-logo { height: 72px; width: auto; filter: brightness(0) invert(1); margin-bottom: 22px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; color: var(--white); }
.footer-socials { display: flex; gap: 16px; margin-top: 22px; }
.footer-socials a { display: inline-flex; color: var(--white); }
.footer-socials svg { width: 22px; height: 22px; display: block; }
.footer-col-title { font-family: var(--font-title); font-size: 1.6rem; letter-spacing: 0.05em; text-transform: none; color: var(--white); margin-bottom: 20px; font-weight: 400; }
.site-footer a { color: var(--white); font-size: 15px; transition: opacity var(--transition); }
.site-footer a:hover { opacity: 0.7; }
.site-footer a.footer-logo-link:hover { opacity: 1; }
.site-footer li { margin-bottom: 11px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 40px; padding: 40px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 15px; color: var(--white);
}
.footer-copy { font-size: 13px; }
.footer-bottom a { color: var(--white); }
.footer-bottom a:hover { opacity: 0.7; }
.footer-legal-links { display: flex; gap: 38px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}
@media (max-width: 760px) {
  .site-footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > div:first-child { margin-bottom: 14px; }
  .footer-bottom { flex-direction: column-reverse; align-items: flex-start; gap: 16px; }
}

/* ---------- Utilitaires d'apparition ----------
   Progressive enhancement : visible par défaut ; masqué/animé
   uniquement si le JS a ajouté .js sur <html>. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .benefits { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 44px 24px; }
  .steps::before { display: none; }
  .cards, .quotes { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 760px) {
  :root { --gutter: 20px; }
  .container { padding: 0 20px; }
  .brand img { height: 48px; }
  .site-header__bar { height: 80px; }
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex; flex-direction: column; position: absolute; top: 96px; left: 0; right: 0;
    background: var(--white); padding: 24px; gap: 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav.is-open a { font-size: 0.9rem; }
  .cards, .quotes { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
}

/* ============================================================
   LANDING EBOOK (ebook.html) — héros + formulaire lead
   ============================================================ */
.lead-page { background: var(--sand); padding: clamp(36px, 5vw, 76px) 0; }
.lead__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 5vw, 76px); align-items: start; }
.lead__left { position: sticky; top: 104px; }

/* Livre */
.lead-book { position: relative; width: min(430px, 96%); margin: 0 auto 30px; }
.lead-book__cover { width: 100%; height: auto; filter: drop-shadow(0 12px 22px rgba(53,52,50,0.12)); }

.lead-badge { display: inline-block; background: rgba(111,122,82,0.13); color: var(--olive-dark); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 8px 15px; border-radius: 999px; }
.lead-title { font-family: var(--font-title); font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.12; margin: 16px 0 0; }
.lead-title em { color: var(--olive); font-style: italic; }
.lead-bullets { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 11px; }
.lead-bullets li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 1rem; }
.lead-bullets li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--olive); }
.lead-rating { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.95rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.lead-rating__stars { color: #e0a106; letter-spacing: 2px; font-size: 1rem; }
.lead-rating b { color: var(--ink); }

/* Carte formulaire */
.lead-form-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(24px, 3.4vw, 46px); box-shadow: 0 30px 70px rgba(53,52,50,0.10); }
.lead-form__title { font-family: var(--font-title); font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.1; }
.lead-form__sub { color: var(--ink-soft); margin: 8px 0 0; }
.lead-form { margin-top: 6px; }
.lf-field { margin-top: 24px; border: none; padding: 0; }
.lf-field > label, .lf-field > legend { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 10px; color: var(--ink); padding: 0; }
.lf-field i { color: var(--olive); font-style: normal; }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form input[type="text"], .lead-form input[type="email"], .lead-form input[type="tel"] {
  width: 100%; padding: 0.85em 1.1em; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 15px; background: var(--white); color: var(--ink);
}
.lead-form input::placeholder { color: #b6ada3; }
.lead-form textarea, .lead-form select { width: 100%; padding: 0.85em 1.1em; border: 1.5px solid var(--line); border-radius: 12px; font-family: var(--font-body); font-size: 15px; background: var(--white); color: var(--ink); }
.lead-form textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
/* Select : rendu unifié cross-navigateur (flèche custom au lieu du natif) */
.lead-form select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  cursor: pointer; padding-right: 2.8em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23353432' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1em center; background-size: 14px;
}
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(111,122,82,0.12); }
.lf-hint { display: block; font-size: 0.8rem; font-style: italic; color: var(--ink-soft); margin-top: 8px; }
.lf-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lf-opt { position: relative; display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer; font-size: 0.94rem; line-height: 1.3; transition: border-color 0.2s var(--ease), background 0.2s var(--ease); }
.lf-opt:hover { border-color: var(--olive); }
.lf-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.lf-opt:has(input:checked) { border-color: var(--olive); background: rgba(111,122,82,0.08); box-shadow: inset 0 0 0 1px var(--olive); }
.lf-opt:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(111,122,82,0.18); }
.lf-opt__emoji { font-size: 1.2rem; }
.lf-opt--wide { grid-column: 1 / -1; }
.lf-submit { width: 100%; justify-content: center; margin-top: 30px; font-size: 1.05rem; padding: 1.05em 1.2em; }
.lf-privacy { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 16px; }
.lf-privacy a { color: var(--olive-dark); text-decoration: underline; }

/* Bouton "scroller au formulaire" : mobile uniquement */
.lead-cta-mobile { display: none; }
.lead-form-card { scroll-margin-top: 90px; }

@media (max-width: 900px) {
  .lead__grid { grid-template-columns: minmax(0, 1fr); }
  .lead__left { position: static; max-width: 520px; margin: 0 auto; min-width: 0; text-align: center; }
  .lead-bullets { display: inline-grid; text-align: left; }
  .lead-rating { justify-content: center; }
}
@media (max-width: 600px) {
  /* Livre un peu plus grand mais qui laisse voir la suite */
  .lead-book { width: min(240px, 64%); margin-left: auto; margin-right: auto; margin-bottom: 22px; }
  .lead-cta-mobile { display: inline-flex; margin: 20px auto 4px; }
  /* Bouton submit en bas du formulaire : sans flèche + police réduite (mobile) */
  .lf-submit { font-size: 14.5px; }
  .lf-submit .arrow { display: none; }
}
@media (max-width: 540px) {
  .lf-row { grid-template-columns: 1fr; }
  .lf-options { grid-template-columns: 1fr; }
}

/* ---------- FAQ (accordéon natif <details>) ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid rgba(53,52,50,0.16); }
.faq__item:first-child { border-top: 1px solid rgba(53,52,50,0.16); }
.faq__item summary { list-style: none; cursor: pointer; position: relative; padding: 22px 48px 22px 0; font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; color: var(--ink); line-height: 1.4; transition: color 0.2s var(--ease); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--olive); }
.faq__item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-size: 1.7rem; font-weight: 400; line-height: 1; color: var(--olive); }
.faq__item[open] summary::after { content: "−"; }
.faq__item p { margin: 0; padding: 0 48px 26px 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }

/* Option catalogue sous le formulaire devis (page pro) */
.devis-catalogue { margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(53,52,50,0.14); display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.devis-catalogue span { color: var(--ink-soft); font-size: 0.95rem; }

/* Article de presse (page Notre histoire) */
.press { max-width: 660px; margin: 0 auto; text-align: center; }
.press img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.press figcaption { margin-top: 1rem; font-style: italic; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Page Nous contacter ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 24px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list svg { width: 24px; height: 24px; flex-shrink: 0; margin-top: 3px; fill: none; stroke: var(--olive); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-list__label { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.contact-list a, .contact-list p { color: var(--ink-soft); }
.contact-list a:hover { color: var(--olive); }
.hours { margin-top: 34px; }
.hours__title { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 12px; }
.hours ul { list-style: none; padding: 0; margin: 0; max-width: 380px; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; color: var(--ink-soft); }
.hours li span:first-child { color: var(--ink); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 360px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Page Prendre RDV : vidéo + réservation ---------- */
.video-embed { position: relative; aspect-ratio: 16 / 9; max-width: 920px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--beige); }
.video-embed iframe, .video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-embed__ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: linear-gradient(135deg, var(--beige), #d6c7b6); }
.video-embed__play { width: 76px; height: 76px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.video-embed__play svg { width: 28px; height: 28px; fill: var(--olive); margin-left: 4px; }
.video-embed__ph span:last-child { font-size: 0.95rem; color: var(--ink-soft); }

/* Sélecteur showroom / visio */
.rdv-switch { display: flex; gap: 8px; justify-content: center; max-width: 460px; margin: 0 auto 28px; background: var(--sand); border: 1px solid var(--line); border-radius: 999px; padding: 6px; }
.rdv-switch__btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--ink-soft); background: transparent; border: none; border-radius: 999px; padding: 11px 18px; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.rdv-switch__btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.rdv-switch__btn:hover { color: var(--ink); }
.rdv-switch__btn.is-active { background: var(--olive); color: var(--white); box-shadow: var(--shadow-sm); }

.calendly-embed { max-width: 900px; margin: 0 auto; }
/* Mobile : Calendly empile date + créneaux -> plus haut, pour éviter le scroll interne */
@media (max-width: 640px) { .calendly-embed #calendly-inline { height: 1180px !important; } }
.booking-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; min-height: 360px; border: 1.5px dashed var(--camel); border-radius: var(--radius-lg); background: var(--white); color: var(--ink-soft); padding: 40px 24px; }
.booking-ph svg { width: 46px; height: 46px; fill: none; stroke: var(--camel); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

/* Trust-badges inline (hero Prendre RDV) */
.rdv-trust { list-style: none; padding: 0; margin: 1.8rem 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; }
.rdv-trust li { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 500; color: var(--ink); }
.rdv-trust__check { width: 20px; height: 20px; flex-shrink: 0; }
.rdv-trust__check circle { fill: var(--olive); }
.rdv-trust__check path { fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Pages de remerciement ---------- */
.merci { text-align: center; }
.merci .container { max-width: 720px; }
.merci__icon { width: 84px; height: 84px; border-radius: 50%; background: var(--olive); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 26px; box-shadow: 0 16px 34px rgba(111,122,82,0.35); }
.merci__icon svg { width: 40px; height: 40px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Pages légales (texte) ---------- */
.legal { max-width: 800px; margin: 0 auto; }
.legal h2 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin: 2.4rem 0 0.6rem; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.75; margin-top: 0.8rem; }
.legal ul { margin: 0.8rem 0 0; padding-left: 1.3rem; list-style: disc; }
.legal li { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.7; margin-top: 0.4rem; }
.legal a { color: var(--olive-dark); text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal .updated { font-size: 0.85rem; font-style: italic; margin-top: 2.4rem; }
.legal__head { max-width: 800px; margin: 0 auto 2.4rem; }

/* Trust-badges plus aérés sur mobile (page Mariages uniquement) */
@media (max-width: 620px) {
  .trust-badges--spaced .trust-badges__row { padding: 56px 0; gap: 38px 20px; }
}

/* Ombre du cadre photo allégée sur fond sable (page Notre histoire) */
.section--sand .tilt-frame { box-shadow: 0 10px 24px rgba(53,52,50,0.12); }

/* "Ce qu'on verra ensemble" (RDV) : 3 colonnes desktop, 1 par ligne sur mobile */
.benefits--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .benefits--3 { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Bandeau cookies (RGPD) ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 20px 55px rgba(53,52,50,0.2); padding: 18px 22px;
  transform: translateY(160%); opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.cookie-banner.is-in { transform: translateY(0); opacity: 1; }
.cookie-banner__txt { flex: 1; min-width: 240px; margin: 0; font-size: 0.88rem; line-height: 1.55; color: var(--ink-soft); }
.cookie-banner__txt a { color: var(--olive-dark); text-decoration: underline; }
.cookie-banner__actions { display: flex; align-items: center; gap: 16px; }
.cookie-banner__refuse { background: none; border: none; padding: 8px 4px; font-family: var(--font-body); font-size: 0.9rem; color: var(--ink-soft); cursor: pointer; text-decoration: underline; }
.cookie-banner__refuse:hover { color: var(--ink); }
.cookie-banner__accept { font-size: 0.95rem; padding: 0.7em 2em; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; gap: 14px; padding: 18px; }
  .cookie-banner__actions { justify-content: center; }
}

/* Encart enseigne horizontal (accueil — Notre histoire) */
.split__media .enseigne-img { width: 100%; height: clamp(220px, 26vw, 320px); aspect-ratio: auto; object-fit: cover; object-position: center 50%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
/* Mobile : l'enseigne occupe toute la largeur du conteneur (sinon bridée par sa hauteur fixe) */
@media (max-width: 760px) {
  .split__media:has(.enseigne-img) { max-width: none; width: 100%; }
  .split__media .enseigne-img { height: clamp(200px, 50vw, 300px); }
}

/* Carte contact : plus haute sur desktop */
@media (min-width: 821px) { .contact-map, .contact-map iframe { min-height: 500px; } }
