/* ==========================================================================
   JEESTONE CONCIERGERIE - Premium One Page
   Author: Studio Design (bespoke)
   Palette derived from the golden logo on warm beige.
   ========================================================================== */

/* ----------------------------------------------------------------------- */
/*  1. DESIGN TOKENS                                                        */
/* ----------------------------------------------------------------------- */
:root {
  /* Brand */
  --gold:        #b07e34;   /* primary accent, matches logo gold */
  --gold-deep:   #96682a;
  --gold-soft:   #c99a52;
  --gold-light:  #e4c78f;
  --gold-tint:   #f4e9d6;

  /* Neutrals - warm */
  --cream:       #faf6ef;   /* page base */
  --cream-2:     #f5ede0;   /* alt sections */
  --sand:        #efe4d3;
  --paper:       #ffffff;   /* cards */
  --ink:         #2a2118;   /* headings */
  --ink-soft:    #5b5347;   /* body */
  --ink-mute:    #8a8072;   /* meta */
  --line:        #e8ddca;   /* hairlines */

  /* Effects */
  --shadow-sm: 0 4px 14px rgba(90, 65, 30, .06);
  --shadow-md: 0 14px 40px rgba(90, 65, 30, .09);
  --shadow-lg: 0 30px 70px rgba(80, 58, 28, .14);
  --shadow-gold: 0 16px 34px rgba(176, 126, 52, .30);

  --radius-sm: 14px;
  --radius:    22px;
  --radius-lg: 30px;
  --radius-xl: 40px;

  /* Type */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-script: "Allura", "Dancing Script", cursive;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 48px);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ----------------------------------------------------------------------- */
/*  2. RESET & BASE                                                         */
/* ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
}

::selection { background: var(--gold-light); color: var(--ink); }

/* ----------------------------------------------------------------------- */
/*  3. LAYOUT HELPERS                                                       */
/* ----------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section--tint { background: var(--cream-2); }
.section--sand {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

/* ---- Boxicons sizing (icons rendered as <i class="bx ..">) ------------ */
.bx { vertical-align: middle; }
/* Centrage fiable : dans un conteneur d'icône, le glyphe occupe toute la case et se centre. */
/* Conteneurs d'icônes : flex centré (forcé, pour ne jamais retomber en block). */
.hero__stat .ico,
.hero__float .fico,
.svc__ico, .svc-cta__ico,
.zone-card__ico, .why-item__ico,
.offer__name .badge-ico,
.faq-help__ico, .faq-num,
.contact-line__ico,
.footer__socials a,
.wa-float__btn,
.value .ico, .about__badge .av {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1;
}
/* Glyphe : bloc simple, centré par le conteneur flex ci-dessus. */
.zone-card__ico .bx,
.svc__ico .bx, .svc-cta__ico .bx, .svc-cta__list .bx,
.hero__stat .ico .bx, .hero__float .fico .bx,
.why-item__ico .bx, .offer__name .badge-ico .bx,
.faq-help__ico .bx, .contact-line__ico .bx,
.footer__socials a .bx, .wa-float__btn .bx,
.value .ico .bx {
  display: block;
  line-height: 1;
}
.hero__note .bx        { font-size: 22px; color: var(--gold); }
.hero__float .fico .bx { font-size: 22px; }
.hero__stat .ico .bx   { font-size: 38px; }
.svc__ico .bx          { font-size: 28px; }
.svc-cta__ico .bx      { font-size: 36px; }
.svc-cta__list .bx     { font-size: 18px; color: var(--gold); }
.zone-card__ico .bx    { font-size: 24px; }
.why-item__ico .bx     { font-size: 24px; }
.offer__name .badge-ico .bx { font-size: 20px; }
.offer__feats li .bx   { font-size: 20px; color: var(--gold); margin-top: 1px; }
.offer__bonus b .bx    { font-size: 18px; }
.offers__note .bx      { font-size: 26px; color: var(--gold); }
.faq-help__ico .bx     { font-size: 30px; }
.contact-line__ico .bx { font-size: 22px; }
.chip .bx              { font-size: 24px; color: var(--gold-deep); transition: color .3s, transform .3s; }
.chip.is-selected .bx  { color: var(--gold); transform: scale(1.1); }
.footer__contact .bx   { font-size: 19px; color: var(--gold); flex: none; margin-top: 2px; }
.footer__socials .bx   { font-size: 20px; }
.wa-float__btn .bx     { font-size: 32px; }
.value .ico .bx        { font-size: 30px; }
.about__badge .bx      { font-size: 20px; }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: .7;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: .7;
}

.section-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(40px, 6vw, 68px); }
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin-top: .5rem;
}
.section-head p { margin-top: 1.1rem; color: var(--ink-soft); font-size: 1.06rem; }

.title-accent {
  color: var(--gold);
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  font-size: 1.14em;
  line-height: 1;
  vertical-align: -0.04em;
}
.script {
  font-family: var(--font-script);
  color: var(--gold);
  font-weight: 400;
}

/* ----------------------------------------------------------------------- */
/*  4. BUTTONS                                                              */
/* ----------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-weight: 600;
  font-size: .98rem;
  padding: .95em 1.7em;
  border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
  line-height: 1;
  max-width: 100%;
}
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
}
.btn svg, .btn .bx { width: 1.05em; height: 1.05em; font-size: 1.15em; line-height: 1; transition: transform .35s var(--ease); }
.btn:hover svg, .btn:hover .bx { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(176,126,52,.38); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); background: #fff; }

.btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37,211,102,.28);
}
.btn--wa:hover { background: #20bd5a; transform: translateY(-3px); }
.btn--wa svg, .btn--wa .bx { width: 1.2em; height: 1.2em; font-size: 1.3em; }
.btn--wa:hover svg, .btn--wa:hover .bx { transform: none; }

.btn--lg { padding: 1.1em 2.2em; font-size: 1.05rem; }

/* ----------------------------------------------------------------------- */
/*  5. HEADER / NAV                                                         */
/* ----------------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 16px;
}
.header.is-scrolled {
  background: rgba(250, 246, 239, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 6px 26px rgba(90,65,30,.07);
  padding-block: 10px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 64px; width: auto; }
.brand--footer .brand__logo { height: 92px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  position: relative;
  padding: 10px 15px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 10px;
  transition: color .25s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--gold-deep); }

/* ---- Sous-menus (dropdown) ---- */
.nav__item--has-sub { position: relative; }
.nav__caret {
  font-size: 1.05em; margin-left: 2px; vertical-align: middle;
  transition: transform .3s var(--ease);
}
.nav__item--has-sub:hover .nav__caret { transform: rotate(180deg); }
.nav__sub {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 232px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 30;
}
.nav__item--has-sub::after {   /* pont invisible pour ne pas perdre le hover */
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px;
}
.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(6px);
}
.nav__sub a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  border-radius: 10px;
  transition: background .25s, color .25s, padding-left .25s;
}
.nav__sub a::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-light); flex: none; transition: background .25s, transform .25s;
}
.nav__sub a:hover { background: var(--cream-2); color: var(--gold-deep); padding-left: 18px; }
.nav__sub a:hover::before { background: var(--gold); transform: scale(1.2); }

.nav__cta { display: flex; align-items: center; gap: 10px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: #fff;
}
.nav__burger span {
  width: 20px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
@media (max-width: 980px) {
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    background: #faf6ef;            /* fond 100% opaque */
    padding: 100px 26px 40px;
    box-shadow: -20px 0 60px rgba(60,44,20,.18);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .45s var(--ease), visibility .45s;
    z-index: 200;                  /* au-dessus du header et de son blur */
  }
  .nav__menu.is-open { transform: translateX(0); visibility: visible; }
  /* CAUSE RACINE : le backdrop-filter du header crée un contexte d'empilement
     qui rend le menu (enfant) translucide. On le supprime sur mobile. */
  .header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(250, 246, 239, .96);
  }
  /* Menu ouvert : header totalement neutre pour ne jamais laisser transparaître la page */
  .header.nav-open,
  .header.nav-open.is-scrolled {
    background: transparent;
    box-shadow: none;
  }
  .nav__link { font-size: 1.1rem; padding: 14px 16px; }
  .nav__link::after { left: 16px; right: auto; width: 24px; bottom: 8px; }
  /* Sous-menus en mobile : empilés, indentés avec un trait doré (hiérarchie visible) */
  .nav__caret { display: none; }
  .nav__sub,
  .nav__item--has-sub:hover .nav__sub,
  .nav__item--has-sub:focus-within .nav__sub {
    position: static; transform: none;
    top: auto; left: auto;
    opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; box-shadow: none;
    background: transparent;
    display: flex; flex-direction: column; gap: 4px;
    padding: 2px 0 4px 16px;
    margin: 2px 0 4px 16px;
    border: none;
    border-left: 2px solid var(--gold-light);
  }
  .nav__item--has-sub::after { display: none; }
  .nav__sub a {
    display: flex; align-items: center; gap: 9px;
    padding: 10px 16px;
    font-size: .98rem;
    font-weight: 500;
    color: var(--ink-mute);
    border-radius: 10px;
    background: none;
  }
  .nav__sub a::before {
    content: ""; display: block;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold-light); flex: none;
    transition: background .25s, transform .25s;
  }
  .nav__sub a:hover { background: none; color: var(--gold-deep); padding-left: 16px; }
  .nav__sub a:hover::before { background: var(--gold); transform: scale(1.25); }
  .nav__burger { display: flex; z-index: 210; position: relative; }
  .nav__cta .btn--nav { display: none; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(40,30,15,.4);
    opacity: 0; visibility: hidden; transition: opacity .4s; z-index: 85;
    backdrop-filter: blur(2px);
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}
@media (max-width: 560px) {
  .nav__cta .btn { padding: .8em 1.2em; font-size: .85rem; }
}

/* ----------------------------------------------------------------------- */
/*  6. HERO                                                                 */
/* ----------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,154,82,.28), transparent 62%);
  top: -180px; right: -120px;
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--gold-deep);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .55em 1.1em;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(176,126,52,.18); flex: none; }
@media (max-width: 480px) {
  .hero__badge {
    align-items: flex-start;
    letter-spacing: .06em;
    font-size: .72rem;
    border-radius: 18px;
    line-height: 1.4;
  }
  .hero__badge .dot { margin-top: .45em; }
}

.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  margin: 1.1rem 0 0;
  letter-spacing: -.02em;
}
.hero h1 .line-gold {
  color: var(--gold);
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  font-size: 1.20em;
  line-height: 0.85;
  vertical-align: -0.03em;
}
.hero__lead {
  margin-top: 1.4rem;
  font-size: 1.12rem;
  max-width: 30em;
  color: var(--ink-soft);
}
.hero__lead strong { color: var(--ink); font-weight: 600; }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note {
  margin-top: 1.6rem;
  display: flex; align-items: center; gap: .7em;
  font-size: .94rem; color: var(--ink-mute);
}
.hero__note svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

/* hero visual */
.hero__visual { position: relative; }
.hero__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
  position: relative;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(90,60,20,.12));
}

.hero__float {
  position: absolute;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__float .fico {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--gold-tint); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.hero__float .fico svg { width: 22px; height: 22px; }
.hero__float b { display: block; color: var(--ink); font-size: 1.25rem; font-family: var(--font-display); line-height: 1; }
.hero__float span { font-size: .78rem; color: var(--ink-mute); }
.hero__float--tl { top: 26px; left: -26px; animation: floaty 6s var(--ease) infinite; }
.hero__float--br { bottom: 40px; right: -24px; animation: floaty 6s var(--ease) 1.5s infinite; }

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* stat strip */
.hero__stats {
  position: relative; z-index: 1;
  margin-top: clamp(40px, 6vw, 70px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.hero__stat {
  padding: 26px 22px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  position: relative;
}
.hero__stat + .hero__stat::before {
  content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 1px; background: var(--line);
}
.hero__stat .ico { width: 40px; height: 40px; color: var(--gold); }
.hero__stat .ico svg { width: 100%; height: 100%; }
.hero__stat b { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); font-weight: 600; }
.hero__stat span { font-size: .85rem; color: var(--ink-mute); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 480px; margin-inline: auto; }
  .hero__photo { aspect-ratio: 4/3.4; }
  .hero__float--tl { left: 8px; }
  .hero__float--br { right: 8px; }
}
@media (max-width: 620px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(3)::before { display: none; }
  .hero__float { padding: 10px 12px; }
  .hero__float b { font-size: 1.05rem; }
}


/* ----------------------------------------------------------------------- */
/*  6b. ENGAGEMENT (investisseuse) + COMPARATIF + STRIP                     */
/* ----------------------------------------------------------------------- */
.invest__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.invest__photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 503 / 687;   /* ratio réel de la photo -> aucun rognage */
}
.invest__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.invest__grid h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-top: .6rem; }
.invest__lead { margin-top: 1.3rem; font-size: 1.05rem; }
.invest__lead strong { color: var(--ink); }
.invest__pillars {
  margin-top: 2rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.pillar__ico {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 12px;
  background: var(--gold-tint); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
}
.pillar__ico .bx { font-size: 24px; }
.pillar b { color: var(--ink); font-family: var(--font-display); font-size: 1.2rem; display: block; margin-bottom: 5px; }
.pillar p { font-size: .9rem; color: var(--ink-soft); }
@media (max-width: 860px) {
  .invest__grid { grid-template-columns: 1fr; }
  .invest__photo { max-width: 380px; margin-inline: auto; order: -1; aspect-ratio: 503 / 687; }
}
@media (max-width: 560px) { .invest__pillars { grid-template-columns: 1fr; gap: 16px; } }

/* Comparatif AVEC / SANS */
.compare {
  margin-top: clamp(52px, 8vw, 96px);
  background: linear-gradient(160deg, var(--cream-2), var(--sand));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 60px);
  box-shadow: var(--shadow-sm);
}
.compare__head { text-align: center; margin-bottom: clamp(28px, 4vw, 44px); }
.compare__head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-top: .5rem; }
.compare__cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  max-width: 900px; margin-inline: auto;
}
.compare__col {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.compare__col h3 {
  text-align: center; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 700; margin-bottom: 18px;
}
.compare__col--yes h3 { color: var(--gold-deep); }
.compare__col--no h3 { color: var(--ink-mute); }
.compare__col ul { display: flex; flex-direction: column; gap: 14px; }
.compare__col li { display: flex; align-items: center; gap: 12px; font-size: .98rem; font-weight: 500; }
.compare__col li .bx { font-size: 22px; flex: none; }
.compare__col--yes li { color: var(--ink); }
.compare__col--yes li .bx { color: #3f9a54; }
.compare__col--no li { color: var(--ink-mute); }
.compare__col--no li .bx { color: #c98a86; }
.compare__vs { display: flex; align-items: center; justify-content: center; }
.compare__vs span {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  box-shadow: var(--shadow-gold);
}
@media (max-width: 720px) {
  .compare__cols { grid-template-columns: 1fr; }
  .compare__vs span { width: 46px; height: 46px; }
}

/* Bandeau "Prêt à déléguer" */
.ready {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.ready__ico {
  width: 68px; height: 68px; border-radius: 20px; flex: none;
  background: var(--gold-tint); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
}
.ready__ico .bx { font-size: 34px; }
.ready__text h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
.ready__text p { margin-top: 5px; font-size: .98rem; color: var(--ink-soft); }
@media (max-width: 780px) {
  .ready { grid-template-columns: 1fr; text-align: center; }
  .ready__ico { margin-inline: auto; }
}

/* Strip de valeurs */
.values-strip {
  margin-top: clamp(30px, 4vw, 48px);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  border-top: 1px solid var(--line); padding-top: clamp(28px, 4vw, 40px);
}
.vstrip { text-align: center; padding: 8px 14px; position: relative; }
.vstrip + .vstrip::before {
  content: ""; position: absolute; left: 0; top: 12px; bottom: 12px; width: 1px; background: var(--line);
}
.vstrip__ico { display: block; color: var(--gold); margin-bottom: 10px; }
.vstrip__ico .bx { font-size: 30px; }
.vstrip b { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 4px; }
.vstrip span { font-size: .82rem; color: var(--ink-mute); }
@media (max-width: 860px) {
  .values-strip { grid-template-columns: repeat(2, 1fr); gap: 20px 8px; }
  .vstrip:nth-child(odd)::before { display: none; }
  .vstrip:nth-child(3)::before, .vstrip:nth-child(5)::before { display: none; }
}
@media (max-width: 460px) {
  .values-strip { grid-template-columns: 1fr; }
  .vstrip::before { display: none !important; }
  .vstrip { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
  .vstrip:last-child { border-bottom: none; }
}

/* ----------------------------------------------------------------------- */
/*  7. GENERIC CARD                                                         */
/* ----------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }

/* ----------------------------------------------------------------------- */
/*  8. ABOUT                                                               */
/* ----------------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}
.about__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1076 / 1462;   /* ratio réel de la photo -> aucun rognage */
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about__badge {
  position: absolute; left: 22px; bottom: 22px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.about__badge .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
}
.about__badge b { color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; display: block; line-height: 1.1; }
.about__badge span { font-size: .78rem; color: var(--ink-mute); }

.about h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-top: .6rem; }
.about__lead { margin-top: 1.4rem; font-size: 1.08rem; }
.about__lead strong { color: var(--ink); }

.values {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.value {
  text-align: center;
  padding: 18px 12px;
  border-radius: 16px;
  background: var(--cream-2);
  border: 1px solid var(--line);
}
.value .ico { width: 34px; height: 34px; color: var(--gold); margin: 0 auto 8px; }
.value b { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.1rem; }
.value span { font-size: .82rem; color: var(--ink-mute); }

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 400px; margin-inline: auto; aspect-ratio: 1076 / 1462; }
}
@media (max-width: 440px) { .values { grid-template-columns: 1fr; } }

/* --- À propos : intro "bien plus qu'une gestion" --- */
.about-intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 92px);
}
.about-intro h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-top: .6rem; }
.about-intro__media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3.1;
}
.about-intro__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .about-intro { grid-template-columns: 1fr; }
  .about-intro__media { max-width: 460px; margin-inline: auto; aspect-ratio: 4/2.8; }
}

/* --- À propos : nos engagements (4 cartes) --- */
.engagements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.engagement {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .4s;
}
.engagement:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.engagement__ico {
  width: 62px; height: 62px; border-radius: 18px; margin: 0 auto 18px;
  background: var(--gold-tint); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  transition: background .4s, color .4s, transform .4s var(--ease);
}
.engagement__ico .bx { font-size: 30px; }
.engagement:hover .engagement__ico { background: var(--gold); color: #fff; transform: scale(1.06); }
.engagement h3 { font-size: 1.4rem; margin-bottom: 8px; }
.engagement p { font-size: .93rem; color: var(--ink-soft); }
@media (max-width: 900px) { .engagements { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .engagements { grid-template-columns: 1fr; } }

/* --- À propos : notre promesse --- */
.promesse {
  margin-top: clamp(40px, 6vw, 68px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  background: linear-gradient(120deg, var(--cream-2), var(--sand));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.promesse h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-top: .5rem; }
.promesse p { margin: 1.1rem 0 1.8rem; font-size: 1.02rem; max-width: 44em; }
.promesse__media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4/3;
}
.promesse__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .promesse { grid-template-columns: 1fr; }
  .promesse__media { order: -1; max-width: 520px; margin-inline: auto; aspect-ratio: 16/9; }
}

/* ----------------------------------------------------------------------- */
/*  9. SERVICES                                                            */
/* ----------------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.svc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .4s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.svc::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-deep));
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.svc:hover::before { transform: scaleX(1); }
.svc__ico {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--gold-tint); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background .4s, color .4s, transform .4s var(--ease);
}
.svc__ico svg { width: 28px; height: 28px; }
.svc:hover .svc__ico { background: var(--gold); color: #fff; transform: scale(1.06) rotate(-4deg); }
.svc h3 {
  font-size: 1.32rem;
  margin-bottom: 8px;
  min-height: 2.4em;            /* réserve 2 lignes pour aligner les descriptions */
  display: flex;
  align-items: flex-start;
}
.svc p { font-size: .94rem; color: var(--ink-soft); }
.svc__media {
  margin: 22px -26px -28px;   /* déborde le padding pour aller bord à bord */
  margin-top: auto;           /* colle la photo en bas de la carte */
  padding-top: 22px;
  aspect-ratio: 16/8.6;
  overflow: hidden;
}
.svc__media img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: transform .8s var(--ease);
}
.svc:hover .svc__media img { transform: scale(1.06); }
@media (max-width: 1080px) { .svc h3 { min-height: 0; } }

@media (max-width: 1080px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services__grid { grid-template-columns: 1fr; } }

/* interlocuteur banner */
.svc-cta {
  margin-top: clamp(36px, 5vw, 56px);
  background: linear-gradient(120deg, var(--cream-2), var(--sand));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.svc-cta__ico {
  width: 74px; height: 74px; border-radius: 20px;
  background: #fff; color: var(--gold-deep); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); flex: none;
}
.svc-cta__ico svg { width: 36px; height: 36px; }
.svc-cta h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.svc-cta p { margin-top: 6px; font-size: .98rem; max-width: 44em; }
.svc-cta__list { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 14px; }
.svc-cta__list li { display: flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 500; color: var(--ink); }
.svc-cta__list svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
@media (max-width: 820px) {
  .svc-cta { grid-template-columns: 1fr; text-align: center; }
  .svc-cta__ico { margin-inline: auto; }
  .svc-cta__list { justify-content: center; }
}

/* ----------------------------------------------------------------------- */
/*  10. ZONE D'INTERVENTION                                                 */
/* ----------------------------------------------------------------------- */
.zone__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.zone__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: #e9ede1;
  aspect-ratio: 520 / 500;
}
.zone__map svg { width: 100%; height: 100%; display: block; }
#zoneMap { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
/* Voile discret sur le coin bas-droit (masque le bandeau des tuiles CARTO) */
.zone__map::after {
  content: ""; position: absolute; right: 0; bottom: 0; z-index: 2;
  width: 190px; height: 120px; pointer-events: none;
  background: radial-gradient(120% 120% at 100% 100%, rgba(250,246,239,.96) 40%, rgba(250,246,239,0) 72%);
}

/* --- Leaflet : marqueur doré personnalisé --- */
.zone-pin { position: relative; }
.zone-pin__drop {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 26px; height: 26px; border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  transform: translateX(-50%) rotate(-45deg);
  box-shadow: 0 6px 14px rgba(120, 85, 30, .45);
  border: 2px solid #fff;
}
.zone-pin__drop::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  transform: translate(-50%, -50%);
}
.zone-pin__label {
  position: absolute; left: 50%; top: 30px; transform: translateX(-50%);
  white-space: nowrap; font-family: var(--font-body); font-weight: 700;
  font-size: 12px; color: var(--ink); background: rgba(255,255,255,.9);
  padding: 2px 8px; border-radius: 999px; box-shadow: var(--shadow-sm);
  letter-spacing: .01em;
}
/* Popups aux couleurs de la marque */
.leaflet-popup-content-wrapper { border-radius: 14px; box-shadow: var(--shadow-md); }
.leaflet-popup-content { font-family: var(--font-body); color: var(--ink-soft); font-size: .9rem; }
.leaflet-popup-content b { color: var(--gold-deep); font-family: var(--font-display); font-size: 1.05rem; }
.leaflet-container a.leaflet-popup-close-button { color: var(--gold-deep); }
.leaflet-bar a { color: var(--ink); }
.leaflet-bar a:hover { color: var(--gold-deep); }
.leaflet-control-attribution { font-size: 10px; background: rgba(255,255,255,.7); }
.zone__cards { display: flex; flex-direction: column; gap: 18px; }
.zone-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 26px;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s;
}
.zone-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.zone-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.zone-card__ico {
  width: 50px; height: 50px; border-radius: 14px; flex: none;
  background: var(--gold-tint); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
}
.zone-card__ico svg { width: 24px; height: 24px; }
.zone-card__head b { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); line-height: 1.1; }
.zone-card__head span { display: block; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 2px; }
.zone-card p { font-size: .95rem; }
.zone-card--soft { background: linear-gradient(120deg, var(--cream-2), var(--sand)); }
@media (max-width: 900px) { .zone__grid { grid-template-columns: 1fr; } .zone__map { min-height: 340px; } }

/* Bandeau "votre bien est dans notre secteur ?" */
.zone-banner {
  margin-top: clamp(32px, 5vw, 52px);
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.zone-banner__ico {
  width: 68px; height: 68px; border-radius: 50%; flex: none;
  background: var(--gold-tint); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
}
.zone-banner__ico .bx { font-size: 34px; }
.zone-banner__text h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
.zone-banner__text p { margin-top: 5px; font-size: .98rem; color: var(--ink-soft); max-width: 46em; }
@media (max-width: 780px) {
  .zone-banner { grid-template-columns: 1fr; text-align: center; }
  .zone-banner__ico { margin-inline: auto; }
}

/* ----------------------------------------------------------------------- */
/*  11. WHY / POURQUOI                                                      */
/* ----------------------------------------------------------------------- */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.why__photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 5/5.4; position: relative;
}
.why__photo img { width: 100%; height: 100%; object-fit: cover; }
.why__list { display: flex; flex-direction: column; gap: 8px; margin-top: 1.6rem; }
.why-item {
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  padding: 18px 4px; border-bottom: 1px solid var(--line);
  align-items: start;
}
.why-item:last-child { border-bottom: none; }
.why-item__ico {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  border: 1.5px solid var(--gold-light);
  color: var(--gold-deep); display: flex; align-items: center; justify-content: center;
  transition: background .4s, color .4s, transform .4s var(--ease);
}
.why-item__ico svg { width: 24px; height: 24px; }
.why-item:hover .why-item__ico { background: var(--gold); border-color: var(--gold); color: #fff; transform: scale(1.05); }
.why-item h4 { font-size: 1.02rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); font-family: var(--font-body); font-weight: 700; }
.why-item p { font-size: .95rem; margin-top: 3px; }
@media (max-width: 860px) { .why__grid { grid-template-columns: 1fr; } .why__photo { max-width: 460px; margin-inline: auto; order: -1; aspect-ratio: 5/4; } }

/* ----------------------------------------------------------------------- */
/*  12. OFFERS                                                              */
/* ----------------------------------------------------------------------- */
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.offer {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
}
.offer:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.offer--featured {
  border: 1.5px solid var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-10px);
}
.offer--featured:hover { transform: translateY(-16px); }
.offer__flag {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  background: var(--gold); color: #fff;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  padding: .5em 1em; border-radius: 999px;
  box-shadow: var(--shadow-gold);
}
.offer__media { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.offer__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.offer:hover .offer__media img { transform: scale(1.06); }
.offer__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(40,30,15,.28)); }
.offer__body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.offer__name { display: flex; align-items: center; gap: 10px; }
.offer__name .badge-ico { width: 40px; height: 40px; border-radius: 12px; background: var(--gold-tint); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; flex: none; }
.offer__name .badge-ico svg { width: 20px; height: 20px; }
.offer__name h3 { font-size: 1.55rem; letter-spacing: .04em; }
.offer__price { margin: 16px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.offer__price .num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--ink); line-height: 1; }
.offer__price .pct { font-size: 1.4rem; color: var(--gold); font-family: var(--font-display); }
.offer__price small { font-size: .85rem; color: var(--ink-mute); margin-left: 4px; }
.offer__commit {
  display: inline-block; align-self: flex-start; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-deep); background: var(--gold-tint); padding: .45em 1em; border-radius: 999px; margin-bottom: 6px;
}
.offer__divider { height: 1px; background: var(--line); margin: 18px 0; }
.offer__sub { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--gold); text-align: center; margin-bottom: 14px; }
.offer__feats { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.offer__feats li { display: grid; grid-template-columns: auto 1fr; gap: 12px; font-size: .93rem; align-items: start; }
.offer__feats li svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.offer__feats li b { color: var(--ink); font-weight: 600; }
.offer__bonus {
  margin-top: 16px; background: var(--cream-2); border: 1px dashed var(--gold-light);
  border-radius: 16px; padding: 16px 18px;
}
.offer__bonus b { display: flex; align-items: center; gap: 8px; color: var(--gold-deep); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.offer__bonus b svg { width: 18px; height: 18px; }
.offer__bonus ul { display: flex; flex-direction: column; gap: 6px; }
.offer__bonus li { font-size: .88rem; padding-left: 16px; position: relative; }
.offer__bonus li::before { content:"•"; position: absolute; left: 2px; color: var(--gold); }
.offer__btn { margin-top: 22px; }
.offer__btn .btn { width: 100%; justify-content: center; }
.offer__btn .btn--soft { background: var(--cream-2); color: var(--ink); border: 1px solid var(--line); }
.offer__btn .btn--soft:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.offers__note {
  margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 12px;
  text-align: center; color: var(--ink-mute); font-size: .92rem; max-width: 680px; margin-inline: auto;
}
.offers__note svg { width: 26px; height: 26px; color: var(--gold); flex: none; }

/* --- Tableau récapitulatif des prestations --- */
.offers-table { margin-top: clamp(40px, 6vw, 64px); }
.otable {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.otable__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.otable__row:last-child { border-bottom: none; }
.otable__row:not(.otable__row--head):nth-child(even) { background: var(--cream); }
.otable__row--head {
  background: linear-gradient(120deg, var(--cream-2), var(--sand));
  border-bottom: 1px solid var(--line);
}
.otable__feat {
  padding: 15px 22px; font-size: .95rem; font-weight: 500; color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.otable__feat .bx { font-size: 20px; color: var(--gold); }
.otable__row--head .otable__feat { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.otable__tier {
  padding: 15px 12px; text-align: center;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  color: var(--ink);
}
.otable__tier--pop { color: var(--gold-deep); background: var(--gold-tint); position: relative; }
.otable__tier--pop::after {
  content: "Le plus choisi"; position: absolute; top: -1px; left: 0; right: 0;
  font-size: .58rem; letter-spacing: .1em; color: #fff; background: var(--gold);
  padding: 2px 0; text-transform: uppercase;
}
.otable__cell {
  padding: 14px 12px; text-align: center; font-size: .88rem; color: var(--ink-soft); font-weight: 600;
}
.otable__cell .bx { font-size: 22px; }
.otable__cell .bx-check { color: #3f9a54; }
.otable__cell--no .bx { color: #cbb9a0; }
/* colonne Premium mise en avant sur toute la hauteur */
.otable__row > .otable__tier--pop,
.otable__row > .otable__cell:nth-child(3) { background: rgba(244, 233, 214, .5); }
.otable__row--head > .otable__tier--pop { background: var(--gold-tint); }

.offers-table__note {
  margin-top: 22px; display: flex; align-items: flex-start; gap: 10px;
  justify-content: center; text-align: center;
  color: var(--ink-mute); font-size: .9rem; max-width: 720px; margin-inline: auto;
}
.offers-table__note .bx { font-size: 22px; color: var(--gold); flex: none; }

@media (max-width: 680px) {
  .offers-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .otable { min-width: 560px; }
}

@media (max-width: 980px) {
  .offers__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .offer--featured { transform: none; }
  .offer--featured:hover { transform: translateY(-6px); }
}

/* ----------------------------------------------------------------------- */
/*  12b. TÉMOIGNAGES                                                         */
/* ----------------------------------------------------------------------- */
.testi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .4s;
}
.testi::before {
  content: "\201C";
  position: absolute;
  top: 8px; right: 22px;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--gold-light);
  opacity: .5;
  pointer-events: none;
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.testi__stars { display: flex; gap: 3px; color: var(--gold); font-size: 17px; }
.testi__text { font-size: .96rem; color: var(--ink-soft); flex: 1; line-height: 1.6; }
.testi__author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); margin-top: 2px; }
.testi__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .02em;
}
.testi__author b { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.15rem; line-height: 1.2; }
.testi__role {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .74rem; font-weight: 600; letter-spacing: .04em;
  margin-top: 3px; padding: .2em .7em; border-radius: 999px;
}
.testi__role .bx { font-size: 14px; }
.testi__role--owner { background: var(--gold-tint); color: var(--gold-deep); }
.testi__role--guest { background: #eef1e8; color: #5c7052; }
@media (max-width: 1080px) { .testi__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .testi__grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------------- */
/*  13. FAQ                                                                 */
/* ----------------------------------------------------------------------- */
.faq__grid { max-width: 880px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: border-color .35s, box-shadow .35s;
}
.faq-item.is-open { border-color: var(--gold-light); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 18px;
  padding: 22px 26px; text-align: left;
}
.faq-num {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  transition: transform .4s var(--ease);
}
.faq-item.is-open .faq-num { transform: scale(1.06); }
.faq-q h3 { flex: 1; font-size: 1.16rem; font-weight: 600; color: var(--ink); }
.faq-icon { width: 30px; height: 30px; flex: none; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--gold-deep);
  transform: translate(-50%, -50%); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s;
}
.faq-icon::before { width: 15px; height: 2.5px; }
.faq-icon::after { width: 2.5px; height: 15px; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-item.is-open .faq-icon::before { transform: translate(-50%,-50%) rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a__inner { padding: 0 26px 24px 88px; color: var(--ink-soft); font-size: .98rem; }
@media (max-width: 560px) {
  .faq-q { padding: 18px; gap: 12px; }
  .faq-num { width: 38px; height: 38px; font-size: .9rem; }
  .faq-q h3 { font-size: 1rem; }
  .faq-a__inner { padding: 0 18px 20px 18px; }
}

.faq-help {
  margin-top: 32px; max-width: 880px; margin-inline: auto;
  background: linear-gradient(120deg, var(--cream-2), var(--sand));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.faq-help__txt { display: flex; align-items: center; gap: 18px; }
.faq-help__ico { width: 60px; height: 60px; border-radius: 50%; background: #fff; color: var(--gold-deep); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); flex: none; }
.faq-help__ico svg { width: 30px; height: 30px; }
.faq-help b { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); display: block; }
.faq-help span { font-size: .92rem; color: var(--ink-soft); }

/* ----------------------------------------------------------------------- */
/*  14. CTA BAND                                                            */
/* ----------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__inner {
  background: linear-gradient(120deg, #3a2c18, #5a4022 60%, var(--gold-deep));
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.cta-band__inner::before,
.cta-band__inner::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(228,199,143,.4), transparent 65%);
}
.cta-band__inner::before { width: 380px; height: 380px; top: -160px; left: -120px; }
.cta-band__inner::after { width: 420px; height: 420px; bottom: -200px; right: -140px; }
.cta-band .eyebrow { color: var(--gold-light); position: relative; z-index: 1; justify-content: center; }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: var(--gold-light); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.2rem); margin-top: 12px; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 14px; max-width: 40em; margin-inline: auto; position: relative; z-index: 1; }
.cta-band__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; z-index: 1; }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ----------------------------------------------------------------------- */
/*  15. CONTACT                                                             */
/* ----------------------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}
.contact__intro h2 { font-size: clamp(2rem, 4.4vw, 3rem); margin-top: .5rem; }
.contact__intro p { margin-top: 1.2rem; }
.contact__script { font-family: var(--font-script); color: var(--gold); font-size: 1.5rem; margin-top: 1.2rem; line-height: 1.3; overflow-wrap: break-word; word-break: break-word; }
@media (max-width: 480px) { .contact__script { font-size: 1.25rem; } }

.contact__cards { margin-top: 2rem; display: flex; flex-direction: column; gap: 12px; }
.contact-line {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; transition: transform .35s var(--ease), box-shadow .35s;
}
.contact-line:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); border-color: var(--gold-light); }
.contact-line__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-tint); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-line__ico svg { width: 22px; height: 22px; }
.contact-line small { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.contact-line b { color: var(--ink); font-weight: 600; font-size: 1rem; overflow-wrap: break-word; word-break: break-word; min-width: 0; }
.contact-line > div { min-width: 0; }
@media (max-width: 400px) { .contact-line b { font-size: .92rem; } }

/* form */
.contact__form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow-md);
}
.form-title { text-align: center; font-size: 1.05rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); font-family: var(--font-body); font-weight: 700; margin-bottom: 26px; position: relative; }
.form-title::after { content:""; display: block; width: 46px; height: 3px; background: var(--gold); border-radius: 3px; margin: 12px auto 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--gold); }
.field input, .field textarea {
  font-family: inherit; font-size: .96rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 16px; transition: border-color .3s, box-shadow .3s, background .3s;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #b3a894; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 4px rgba(176,126,52,.12);
}
.field textarea { resize: vertical; min-height: 120px; }

.field-group { margin-bottom: 18px; }
.field-group > label { font-size: .86rem; font-weight: 600; color: var(--ink); display: block; margin-bottom: 10px; }
.chip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.chip-grid--sub { grid-template-columns: repeat(5, 1fr); }
.chip {
  border: 1.5px solid var(--line); background: var(--cream); border-radius: 14px;
  padding: 14px 8px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  transition: all .3s var(--ease); position: relative;
}
.chip svg { width: 24px; height: 24px; color: var(--gold-deep); transition: color .3s, transform .3s; }
.chip:hover { border-color: var(--gold-light); background: #fff; transform: translateY(-2px); }
.chip.is-selected {
  border-color: var(--gold); background: linear-gradient(135deg, var(--gold-tint), #fff);
  color: var(--gold-deep); box-shadow: var(--shadow-sm);
}
.chip.is-selected svg { color: var(--gold); transform: scale(1.1); }
.chip.is-selected::after {
  content: "✓"; position: absolute; top: 6px; right: 8px;
  width: 18px; height: 18px; border-radius: 50%; background: var(--gold); color: #fff;
  font-size: .7rem; display: flex; align-items: center; justify-content: center; line-height: 1;
}
@media (max-width: 680px) { .chip-grid, .chip-grid--sub { grid-template-columns: repeat(2, 1fr); } .form-row { grid-template-columns: 1fr; } }

.form-consent { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 20px; font-size: .86rem; color: var(--ink-soft); }
.form-consent input { width: 20px; height: 20px; accent-color: var(--gold); flex: none; margin-top: 2px; }
.form-submit { width: 100%; justify-content: center; }
.form-alt { text-align: center; margin-top: 14px; font-size: .9rem; color: var(--ink-mute); }
.form-alt a { color: #1ea952; font-weight: 600; }
.form-success {
  display: none; text-align: center; padding: 20px;
  background: var(--gold-tint); border-radius: 16px; color: var(--gold-deep); font-weight: 600;
  margin-top: 16px; border: 1px solid var(--gold-light);
}
.form-success.show { display: block; }
.field-error { border-color: #d9534f !important; box-shadow: 0 0 0 4px rgba(217,83,79,.1) !important; }

@media (max-width: 900px) { .contact__grid { grid-template-columns: minmax(0, 1fr); } }

/* ----------------------------------------------------------------------- */
/*  16. FOOTER                                                              */
/* ----------------------------------------------------------------------- */
.footer {
  background: linear-gradient(180deg, var(--cream-2), #efe3cf);
  padding-top: clamp(50px, 7vw, 84px);
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand p { font-size: .95rem; color: var(--ink-soft); max-width: 30em; }
.footer__brand .script { display: block; font-size: 1.3rem; margin-top: 16px; line-height: 1.3; }
.footer col-title, .footer h4 {
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
  font-family: var(--font-body); font-weight: 700; margin-bottom: 18px;
}
.footer__links li { margin-bottom: 11px; }
.footer__links a { font-size: .95rem; color: var(--ink-soft); transition: color .25s, padding .25s; display: inline-block; }
.footer__links a:hover { color: var(--gold-deep); padding-left: 4px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 14px; font-size: .93rem; color: var(--ink-soft); }
.footer__contact svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: var(--gold-deep); }
.footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.footer__socials a {
  width: 42px; height: 42px; border-radius: 12px; background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--gold-deep); transition: all .3s var(--ease);
}
.footer__socials a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); border-color: var(--gold); }
.footer__socials svg { width: 20px; height: 20px; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-block: 26px; font-size: .86rem; color: var(--ink-mute);
}
.footer__bottom a { color: var(--ink-soft); }
.footer__bottom a:hover { color: var(--gold-deep); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------------- */
/*  17. WHATSAPP FLOATING                                                   */
/* ----------------------------------------------------------------------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 0;
}
.wa-float__btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: transform .35s var(--ease), box-shadow .35s;
  position: relative;
}
.wa-float__btn svg { width: 32px; height: 32px; }
.wa-float__btn:hover { transform: scale(1.08); box-shadow: 0 16px 38px rgba(37,211,102,.5); }
.wa-float__btn::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366; animation: wa-pulse 2.4s var(--ease) infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-float__label {
  position: absolute; right: 72px; white-space: nowrap;
  background: #fff; color: var(--ink); font-size: .88rem; font-weight: 600;
  padding: 9px 15px; border-radius: 999px; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateX(10px); pointer-events: none;
  transition: opacity .35s, transform .35s;
}
.wa-float:hover .wa-float__label { opacity: 1; transform: translateX(0); }
@media (max-width: 560px) { .wa-float { right: 16px; bottom: 16px; } .wa-float__btn { width: 54px; height: 54px; } .wa-float__btn svg { width: 28px; height: 28px; } .wa-float__btn .bx { font-size: 28px; } }

/* ----------------------------------------------------------------------- */
/*  18. SCROLL REVEAL                                                       */
/* ----------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

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

/* scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 101; background: linear-gradient(90deg, var(--gold-soft), var(--gold-deep)); transition: width .1s linear; }
