/* =========================================================================
   MY RESIDENCE IMMO — Design system
   Palette : navy profond + or antique + ivoire  •  Brand font : Kiona
   ========================================================================= */

/* ---------- Brand font ---------- */
@font-face {
  font-family: "Kiona";
  src: url("../fonts/Kiona-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* couleurs (OKLCH, teintées vers le hue de marque) */
  --cream:   oklch(0.955 0.018 84);
  --cream-2: oklch(0.976 0.012 85);
  --cream-3: oklch(0.925 0.030 82);
  --ink:      oklch(0.30 0.045 250);   /* titres, bleuté */
  --ink-soft: oklch(0.42 0.035 248);   /* texte courant */
  --ink-mute: oklch(0.56 0.028 246);
  --navy:     #12314b;
  --navy-700: #1b425f;
  --navy-900: #0e2233;
  --gold:        #bb8a44;
  --gold-2:      #d4a64e;
  --gold-soft:   #ecd6a4;
  --gold-deep:   #976c30;
  --gold-bright: #e7bd61;
  --white: #ffffff;
  --line:        oklch(0.30 0.045 250 / 0.12);
  --line-strong: oklch(0.30 0.045 250 / 0.22);
  --line-gold:   rgba(182, 138, 78, 0.45);

  /* type / ombres : INCHANGÉS (conserver tels quels) */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --script: "Dancing Script", cursive;
  --sans: "Source Sans 3", -apple-system, "Segoe UI", Roboto, sans-serif;
  --label: "Kiona", "Source Sans 3", sans-serif;
  --sh-sm: 0 3px 14px rgba(14, 34, 51, 0.08);
  --sh-md: 0 22px 50px -24px rgba(14, 34, 51, 0.40);
  --sh-lg: 0 50px 95px -42px rgba(14, 34, 51, 0.55);
  --sh-gold: 0 24px 52px -22px rgba(150, 110, 50, 0.6);
  --radius: 6px;
  --radius-lg: 14px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: #fff; }

/* ---------- Typo ---------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 800; line-height: 1.08; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.8rem, 6vw, 4.7rem); }
h2 { font-size: clamp(2.1rem, 4.3vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); line-height: 1.2; }
p { text-wrap: pretty; }
strong { color: var(--ink); font-weight: 700; }

.eyebrow {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.78rem;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 400;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.no-line::before { display: none; }

.script { font-family: var(--script); font-weight: 700; color: var(--gold-deep); line-height: 1; }

/* ---------- Layout ---------- */
:target { scroll-margin-top: calc(var(--header-h) + 14px); }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.bg-cream2 { background: var(--cream-2); }
.bg-navy { background: var(--navy-900); color: rgba(255,255,255,0.82); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 1.1rem; font-size: 1.15rem; color: var(--ink-mute); }
.bg-navy .section-head .lead { color: rgba(255,255,255,0.72); }

.lead { font-size: 1.15rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  padding: 1.05rem 1.7rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s ease;
  box-shadow: var(--sh-md);
  isolation: isolate;
}
.btn svg { width: 18px; height: 18px; }
.btn::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.18), transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px) scale(.985); transition-duration: .09s; }
.btn-ghost:active svg { transform: translateX(2px); }
.service-card:active, .review-card:active, .pillar:active { transform: translateY(-2px) scale(.99); transition-duration: .1s; }
.wa-float:active { transform: scale(.94); transition-duration: .09s; }
.btn--gold { --btn-bg: linear-gradient(120deg, var(--gold-bright) 0%, var(--gold) 48%, var(--gold-deep) 100%); box-shadow: var(--sh-gold); }
.btn--lg { padding: 1.2rem 2.1rem; font-size: 0.86rem; }
.btn--block { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--label); text-transform: uppercase; letter-spacing: .14em; font-size: .8rem;
  color: var(--ink); padding-bottom: 4px; border-bottom: 1.5px solid var(--gold);
  transition: color .3s var(--ease);
}
.btn-ghost svg { transition: transform .35s var(--ease-expo); }
.btn-ghost:hover { color: var(--gold-deep); }
.btn-ghost:hover svg { transform: translateX(5px); }
.bg-navy .btn-ghost { color: #fff; }

.btn-sub { display: block; font-family: var(--sans); text-transform: none; letter-spacing: 0; font-size: 0.74rem; opacity: 0.78; margin-top: 1px; font-weight: 400; }
.btn--stack { flex-direction: column; align-items: flex-start; gap: 0; padding-block: 0.95rem; }
.btn--stack .btn-main { display: flex; align-items: center; gap: 0.6rem; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: height .4s var(--ease), background .4s ease, box-shadow .4s ease;
}
.site-header.scrolled {
  height: 60px;
  background: color-mix(in oklab, var(--cream) 88%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--sh-sm);
}
.header-inner { height: 100%; max-width: none; padding-inline: clamp(1.4rem, 4vw, 3.5rem); display: flex; align-items: center; justify-content: space-between; gap: clamp(1rem, 2vw, 2rem); }
.brand { flex: 0 0 auto; display: flex; align-items: center; position: relative; }
.brand img {
  display: block; height: auto;
  width: clamp(196px, 22vw, 300px);   /* 300px @12.64:1 => ~23.7px de haut */
  max-width: 52vw;                    /* garde-fou tablette/mobile */
}
.site-header.scrolled .brand img { width: clamp(188px, 20vw, 284px); }
.brand .logo-blanc { display: none; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 1.7vw, 1.9rem); }
.nav a.nav-link {
  font-family: var(--label); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.75rem; color: var(--ink); position: relative; padding-block: 6px;
  transition: color 0.25s ease;
}
.nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-expo);
}
.nav a.nav-link:hover { color: var(--gold-deep); }
.nav a.nav-link:hover::after, .nav a.nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.header-cta { display: flex; align-items: center; gap: 1.25rem; }
.header-phone {
  display: none; align-items: center; gap: 0.55rem; white-space: nowrap;
  font-family: var(--label); letter-spacing: 0.06em; font-size: 0.86rem; color: var(--ink);
  transition: color 0.25s ease;
}
.header-phone svg { width: 17px; height: 17px; color: var(--gold-deep); }
.header-phone:hover { color: var(--gold-deep); }
.header-cta .btn { padding: 0.8rem 1.3rem; box-shadow: none; font-size: 0.76rem; }
.header-cta .btn:hover { box-shadow: var(--sh-md); }

.burger { display: none; width: 44px; height: 44px; flex: none; flex-direction: column; justify-content: center; gap: 5px; padding: 10px; position: relative; z-index: 101; }
.burger span { height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s ease, background 0.25s ease; }
.burger.open span { background: #fff; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body:has(.mobile-menu.open) .brand .logo-noir { display: none; }
body:has(.mobile-menu.open) .brand .logo-blanc { display: block; }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--navy-900);
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem clamp(1.5rem, 6vw, 3rem);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; color: #fff; padding-block: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a span { font-family: var(--script); color: var(--gold-2); font-size: 1.1rem; }
.mobile-menu .mm-foot { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.mobile-menu .mm-foot a { font-family: var(--sans); font-size: 1rem; border: none; padding: 0; color: var(--gold-2); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  padding-top: clamp(8rem, 16vh, 11rem);
  padding-bottom: 0;
  background:
    radial-gradient(120% 90% at 85% 0%, var(--cream-3) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream-2), var(--cream));
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}
.hero-copy { padding-bottom: clamp(3rem, 6vw, 5rem); max-width: 600px; }
.hero h1 { margin-top: 1.3rem; }
.hero h1 .script { display: block; font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin-top: 0.4rem; font-weight: 700; }
.hero .lead { margin-top: 1.6rem; color: var(--ink-soft); max-width: 33ch; }
.hero-actions { margin-top: 2.2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-mini { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-mute); }
.hero-mini strong { color: var(--ink); }

/* visuel David */
.hero-visual { position: relative; align-self: end; }
.hero-portrait {
  position: relative; z-index: 2;
  border-radius: 220px 220px 0 0;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  filter: grayscale(100%) contrast(1.03);
  background: var(--navy-900);
  aspect-ratio: 3 / 4.05;
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-arch {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 104%; height: 86%; z-index: 1;
  border-radius: 240px 240px 0 0;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold) 70%);
  opacity: 0.5;
}
.hero-badge {
  position: absolute; z-index: 3; left: -1.5rem; bottom: 3.5rem;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--sh-md);
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.85rem;
  border: 1px solid var(--line);
}
.hero-badge .stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 1px; line-height: 1; }
.hero-badge .hb-num { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 1.5rem; line-height: 1; }
.hero-badge .hb-meta { font-size: 0.74rem; color: var(--ink-mute); line-height: 1.3; }
.hero-badge .g-logo { width: 22px; height: 22px; }

/* bandeau de confiance sous le hero */
.trust-strip { background: var(--white); border-top: 1px solid var(--line); margin-top: clamp(2rem, 5vw, 4rem); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; gap: 1rem; align-items: flex-start; padding: clamp(1.6rem,3vw,2.3rem) clamp(1.2rem,2.5vw,2rem); position: relative; }
.trust-item + .trust-item::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: var(--line); }
.trust-item:first-child { background: var(--navy-900); }
.trust-item:first-child h4 { color: #fff; }
.trust-item:first-child p { color: rgba(255,255,255,.66); }
.trust-item .ti-icon { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: oklch(0.925 0.030 82); border: 1px solid var(--line-gold); color: var(--gold-deep); flex: none; }
.trust-item:first-child .ti-icon { background: rgba(255,255,255,.08); border-color: rgba(201,160,99,.45); color: var(--gold-2); }
.trust-item .ti-icon svg { width: 24px; height: 24px; }
.trust-item h4 { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.74rem; color: var(--ink); font-weight: 400; margin-bottom: 0.35rem; }
.trust-item p { font-size: 0.88rem; color: var(--ink-mute); line-height: 1.5; }

/* =========================================================================
   HERO 2 — full-bleed split (référence David : photo + Marseille)
   ========================================================================= */
.hero2 { position: relative; overflow: hidden; background: radial-gradient(80% 70% at 78% 42%, var(--cream-2) 0%, var(--cream) 60%), linear-gradient(115deg, var(--cream-2) 0%, var(--cream) 58%); }
.hero2-grid { display: grid; grid-template-columns: 1.05fr 1.15fr; align-items: stretch; min-height: clamp(520px, 70vh, 730px); }
.hero2-copy {
  display: flex; flex-direction: column; justify-content: center; z-index: 2;
  padding-block: clamp(7.5rem, 13vh, 9.5rem) clamp(2.5rem, 5vw, 4rem);
  padding-left: max(clamp(1.5rem, 4vw, 2.5rem), calc((100vw - var(--maxw)) / 2));
  padding-right: clamp(2rem, 4vw, 3.5rem);
}
.hero2-copy .eyebrow { margin-bottom: 1.5rem; font-size: 0.84rem; }
.hero2-copy h1 { color: var(--navy-900); font-size: clamp(2.7rem, 4.4vw, 3.9rem); line-height: 1.02; }
.hero2-copy h1 .script { display: block; font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--gold-deep); margin-top: 0.5rem; line-height: 1.05; }
.hero2-copy .lead { margin-top: 1.6rem; max-width: 40ch; color: var(--ink-soft); }
.hero2-cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1.3rem; align-items: center; }
.hero2-cta .btn-sub { color: var(--gold-bright); opacity: 1; }
.hero2-mini { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; color: var(--ink-mute); }
.hero2-mini strong { color: var(--navy-900); }
.hero2-trust { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.hero2-trust .hero2-tag { font-size: .92rem; color: var(--ink-mute); }
.hero2-trust .hero2-tag strong { color: var(--navy-900); }
.hero2-photo {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(2.2rem,4vw,3.4rem) clamp(1.6rem,3.5vw,3rem) clamp(2.2rem,4vw,3.4rem) 0;
  margin-left: clamp(-2.5rem, -3vw, -1.4rem);
}
.hero2-frame {
  position: relative; width: min(100%, 460px); aspect-ratio: 0.84;
  border-radius: 230px 230px var(--radius-lg) var(--radius-lg);
  overflow: hidden; background: var(--cream-3);
  box-shadow: 0 0 0 1px var(--line-gold), 0 1.5px 0 1.5px rgba(255,255,255,0.55), var(--sh-lg);
}
.hero2-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
.hero2-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(178deg, rgba(14,34,51,0) 58%, rgba(14,34,51,0.34) 100%), radial-gradient(120% 80% at 50% 8%, rgba(231,189,97,0.10), transparent 55%);
}
.hero2-frame::before {
  content: ""; position: absolute; z-index: 3; top: 0.7rem; left: 50%; transform: translateX(-50%);
  width: 30px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent); opacity: 0.9;
}
.hero2-loc {
  position: absolute; left: 0.85rem; bottom: 0.85rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--label); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.66rem; line-height: 1; color: var(--cream);
  background: rgba(14,34,51,0.55); padding: 0.4rem 0.66rem; border-radius: 999px;
}
.hero2-loc svg { width: 13px; height: 13px; color: var(--gold-bright); }
@media (max-width: 900px) {
  .hero2-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero2-photo { order: -1; height: auto; margin-left: 0; padding: clamp(5rem,12vh,6.5rem) clamp(1.25rem,5vw,2rem) 0.5rem; }
  .hero2-frame { width: min(86%, 360px); aspect-ratio: 0.9; border-radius: 170px 170px var(--radius-lg) var(--radius-lg); }
  .hero2-frame img { object-position: 50% 20%; }
  .hero2-copy { padding-top: clamp(1.5rem,4vw,2.5rem); padding-bottom: 2.5rem; padding-left: clamp(1.25rem,5vw,2rem); padding-right: clamp(1.25rem,5vw,2rem); }
}

/* =========================================================================
   AVIS GOOGLE  (mis en avant)
   ========================================================================= */
.reviews { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.reviews-top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.google-badge { display: flex; align-items: center; gap: 1.25rem; }
.google-badge .gb-logo { width: 54px; height: 54px; flex: none; }
.google-badge .gb-score { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--ink); line-height: 1; }
.google-badge .gb-stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; }
.google-badge .gb-meta { font-size: 0.9rem; color: var(--ink-mute); }
.google-badge .gb-meta strong { color: var(--ink); }

.reviews-track-wrap { position: relative; }
.reviews-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(330px, 1fr);
  gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem; scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { .reviews-track { grid-auto-columns: minmax(0, 1fr); grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; } }
.review-card {
  scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem; box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: 1rem;
  transition: transform .45s var(--ease-expo), box-shadow .45s var(--ease-expo);
}
.review-card:hover { transform: translateY(-5px) scale(1.012); box-shadow: var(--sh-md); }
.review-card .rc-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
.review-card p { color: var(--ink-soft); font-size: 1rem; line-height: 1.62; }
.review-card .rc-who { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; padding-top: 0.5rem; }
.review-card .rc-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-700)); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 700; flex: none; }
.review-card .rc-name { font-weight: 700; color: var(--ink); font-size: 0.95rem; line-height: 1.2; }
.review-card .rc-src { font-size: 0.78rem; color: var(--ink-mute); display: flex; align-items: center; gap: 4px; }
.review-card .rc-src svg { width: 13px; height: 13px; }
.reviews-cta { margin-top: 2.5rem; text-align: center; }

/* =========================================================================
   SERVICES  (Ce que nous prenons en charge)
   ========================================================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; grid-auto-flow: dense; }
.service-card.is-wide { grid-column: span 2; }
.service-card.is-wide h3 { font-size: 1.5rem; }
.service-card.is-wide p { font-size: 1.04rem; max-width: 48ch; }
.service-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.1rem 1.9rem; overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s ease, background 0.45s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--line-gold); background: #fff; }
.service-num { position: absolute; top: 1.4rem; right: 1.7rem; font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 2.4rem; line-height: 1; color: oklch(0.86 0.04 80 / 0.55); transition: color .45s var(--ease), transform .45s var(--ease); }
.service-card:hover .service-num { color: var(--gold); transform: translateY(-2px); }
.service-icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 30% 20%, var(--cream-3), var(--cream)); color: var(--gold-deep);
  border: 1px solid var(--line-gold); margin-bottom: 1.4rem;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.96rem; color: var(--ink-mute); line-height: 1.6; }
.service-card.is-feature { background: var(--navy-900); border-color: var(--navy-900); }
.service-card.is-feature h3 { color: #fff; }
.service-card.is-feature p { color: rgba(255,255,255,0.72); }
.service-card.is-feature .service-icon { background: rgba(255,255,255,0.06); border-color: rgba(201,160,99,0.5); color: var(--gold-2); }
.service-card.is-feature .service-num { color: var(--gold-2); }

/* =========================================================================
   ABOUT DAVID
   ========================================================================= */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about-photo { position: relative; }
.about-photo .ap-img { border-radius: var(--radius-lg); overflow: hidden; filter: grayscale(100%); box-shadow: var(--sh-lg); aspect-ratio: 4/5; }
.about-photo .ap-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .7s var(--ease-expo); }
.about-photo:hover .ap-img img { transform: scale(1.04); }
.about-photo .ap-frame { position: absolute; inset: -16px -16px auto auto; width: 60%; height: 60%; border: 1.5px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; }
.about-photo .ap-tag {
  position: absolute; right: -1rem; bottom: 1.8rem; background: var(--navy-900); color: #fff;
  padding: 1rem 1.4rem; border-radius: var(--radius); box-shadow: var(--sh-md); max-width: 220px;
}
.about-photo .ap-tag .apt-k { font-family: var(--script); color: var(--gold-2); font-size: 1.4rem; line-height: 1; }
.about-photo .ap-tag .apt-s { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 0.3rem; }
.about-copy h2 { margin-bottom: 1.3rem; }
.about-copy h2 .script { display: inline; font-size: 0.62em; }
.about-copy p + p { margin-top: 1.1rem; }
.about-sign { margin-top: 1.8rem; display: flex; align-items: center; gap: 1rem; }
.about-sign .as-name { font-family: var(--script); font-size: 2rem; color: var(--ink); line-height: 1; }
.about-sign .as-role { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; color: var(--gold-deep); }
.about-points { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.6rem; }
.about-points li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; color: var(--ink-soft); }
.about-points li svg { width: 20px; height: 20px; color: var(--gold-deep); flex: none; margin-top: 3px; }

/* =========================================================================
   STATS / chiffres
   ========================================================================= */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat { padding: 0; border: none; }
.stats-editorial { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
.stats-editorial img { height: clamp(140px,18vw,210px); width: auto; }
.stats-editorial .se-lead { font-family: var(--serif); font-weight: 500; font-style: italic; font-size: clamp(1.5rem,2.6vw,2.1rem); line-height: 1.45; color: #fff; }
.stats-editorial .se-lead b { font-style: normal; font-weight: 800; color: var(--gold-bright); white-space: nowrap; }
@media (max-width: 700px) { .stats-editorial { grid-template-columns: 1fr; text-align: left; } .stats-editorial img { display: none; } }

/* home-staging — affirmation + puces (remplace la bande stats) */
.hs-claim { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
.hs-claim-lead { font-family: var(--serif); font-size: clamp(1.5rem,3vw,2.1rem); color: #fff; line-height: 1.25; }
.hs-claim-lead strong { color: var(--gold-2); }
.hs-claim-points { display: grid; gap: .55rem; }
.hs-claim-points li { color: rgba(255,255,255,.8); font-size: .97rem; padding-left: 1.4rem; position: relative; }
.hs-claim-points li::before { content: ""; position: absolute; left: 0; top: .7em; width: 14px; height: 1px; background: var(--gold-2); }
@media (max-width: 900px) { .hs-claim { grid-template-columns: 1fr; } }
.stat .st-num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700; color: #fff; line-height: 1; }
.stat .st-num .suf { color: var(--gold-2); }
.stat .st-lab { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.74rem; color: rgba(255,255,255,0.65); margin-top: 0.7rem; }

/* =========================================================================
   PRICING / barème
   ========================================================================= */
.price-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.price-flag {
  background: linear-gradient(150deg, var(--gold-bright) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: var(--navy-900); border-radius: var(--radius-lg); padding: clamp(2rem,4vw,3rem);
  position: relative; overflow: hidden; box-shadow: var(--sh-gold);
}
.price-flag::after { content: ""; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.35), transparent 70%); }
.price-flag .pf-eye { color: var(--navy-900); opacity: .8; }
.price-flag .pf-eye::before { background: var(--navy-900); }
.price-flag .pf-num { font-family: var(--serif); font-size: clamp(3.4rem,7vw,5rem); font-weight: 800; line-height: 1; margin: .6rem 0 .2rem; color: var(--navy-900); }
.price-flag .pf-num small { font-size: .32em; font-weight: 700; color: var(--navy-700); vertical-align: super; letter-spacing: .05em; }
.price-flag .pf-sub { color: rgba(14,34,51,.82); font-size: 1.05rem; }
.price-flag .pf-note { margin-top: 1.4rem; font-size: .9rem; color: rgba(14,34,51,.7); border-top: 1px solid rgba(14,34,51,.18); padding-top: 1.1rem; }
.price-flag .btn--gold { background: var(--navy-900); color: #fff; box-shadow: var(--sh-md); }

.fee-table { display: flex; flex-direction: column; }
.fee-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.fee-row:last-child { border-bottom: none; }
.fee-row .fr-label { color: var(--ink); font-weight: 600; }
.fee-row .fr-label small { display: block; font-weight: 400; color: var(--ink-mute); font-size: 0.85rem; margin-top: 2px; }
.fee-row .fr-val { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; color: var(--gold-deep); white-space: nowrap; }
.fee-row .fr-val small { font-size: 0.6rem; color: var(--ink-mute); font-family: var(--sans); }

/* =========================================================================
   PROCESS / étapes (timeline)
   ========================================================================= */
.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; padding-bottom: 2.4rem; position: relative; }
.step:last-child { padding-bottom: 0; }
.step-rail { display: flex; flex-direction: column; align-items: center; }
.step-dot { width: 52px; height: 52px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--line-gold); color: var(--gold-deep); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 1.2rem; flex: none; box-shadow: var(--sh-sm); z-index: 1; }
.step-line { width: 1.5px; flex: 1; background: linear-gradient(var(--line-gold), transparent); margin-top: 6px; }
.step:last-child .step-line { display: none; }
.step-body { padding-top: 0.4rem; }
.step-body h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.step-body p { font-size: 0.98rem; color: var(--ink-mute); }

/* =========================================================================
   POURQUOI / split image + liste
   ========================================================================= */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.why-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 5/6; position: relative; margin-left: clamp(0px, -2vw, -2rem); }
.why-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-expo); }
.why-img:hover img { transform: scale(1.04); }
.why-img .wi-quote { position: absolute; inset: auto 1.5rem 1.5rem; background: var(--navy-900); color: #fff; padding: 1.2rem 1.4rem; border-radius: var(--radius); font-family: var(--serif); font-style: italic; font-size: 1.05rem; box-shadow: var(--sh-md); }
.why-list { display: grid; gap: 1.1rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.why-list .wl-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--cream-3); color: var(--gold-deep); display: grid; place-items: center; flex: none; }
.why-list .wl-ic svg { width: 20px; height: 20px; }
.why-list h4 { font-family: var(--sans); font-weight: 700; color: var(--ink); font-size: 1.02rem; margin-bottom: 2px; }
.why-list p { font-size: 0.93rem; color: var(--ink-mute); line-height: 1.5; }

/* =========================================================================
   CTA band
   ========================================================================= */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 2; }
.cta-inner { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2.5rem; align-items: center; }
.cta-inner h2 { color: #fff; }
.cta-inner h2 .script { display: block; color: var(--gold-2); font-size: 0.7em; }
.cta-inner p { color: rgba(255,255,255,0.72); margin-top: 1rem; max-width: 46ch; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; }
.cta-band::before { content: ""; position: absolute; right: -8%; top: -30%; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(201,160,99,0.22), transparent 65%); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.66); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 28px; margin-bottom: 1.3rem; }
.footer-brand p { font-size: 0.95rem; max-width: 32ch; }
.footer-badges { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.footer-badges img { height: 46px; width: auto; background: #fff; border-radius: 8px; padding: 6px 8px; }
.footer-col h5 { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.76rem; color: #fff; margin-bottom: 1.2rem; }
.footer-col a, .footer-col li { display: block; font-size: 0.95rem; padding-block: 0.32rem; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--gold-2); }
.footer-contact a { display: flex; align-items: center; gap: 0.6rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold-2); flex: none; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: grid; place-items: center; transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.5rem; font-size: 0.84rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-2); }

/* =========================================================================
   PAGE HERO (sous-page gestion locative)
   ========================================================================= */
.page-hero { position: relative; padding-top: calc(var(--header-h) + clamp(2rem,6vh,4rem)); padding-bottom: clamp(3rem,6vw,5rem); background: radial-gradient(120% 100% at 80% 0%, var(--cream-3), transparent 55%), linear-gradient(180deg, var(--cream-2), var(--cream)); overflow: hidden; }
.page-hero .container:has(.ph-media) { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.ph-media {
  position: relative; align-self: stretch; min-height: clamp(320px, 46vh, 480px);
  border-radius: 185px 185px var(--radius-lg) var(--radius-lg); overflow: hidden;
  background: radial-gradient(125% 92% at 50% 14%, var(--cream-3), var(--cream-2) 62%);
  box-shadow: 0 0 0 1px var(--line-gold), var(--sh-lg);
}
.ph-media .ph-arch { position: absolute; left: 50%; top: 12%; transform: translateX(-50%); width: 56%; height: 54%; background: url("../img/logo-mark-noir.png") center / contain no-repeat; opacity: 0.06; }
.ph-media .ph-people { position: absolute; left: 0; right: 0; bottom: 0; height: 46%; background: url("../img/people/people-band.png") repeat-x var(--people-x, center) bottom; background-size: auto clamp(96px, 13vh, 126px); }
.ph-media .ph-people::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.ph-media .ph-badge { position: absolute; top: 1.2rem; right: 1.2rem; background: #fff; border-radius: 14px; box-shadow: var(--sh-md); padding: 0.7rem 1rem; display: flex; align-items: center; gap: 0.7rem; }
.ph-media .ph-badge .g-logo { width: 30px; height: 30px; flex: none; }
.ph-media .ph-badge b { font-family: var(--serif); font-weight: 800; color: var(--ink); font-size: 1.4rem; line-height: 1; }
.ph-media .ph-badge .stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 1px; display: block; margin-top: 1px; }
.ph-media .ph-badge small { color: var(--ink-mute); font-size: 0.72rem; }
@media (max-width: 900px) { .page-hero .container:has(.ph-media) { grid-template-columns: 1fr; } .ph-media { order: -1; min-height: clamp(220px,34vh,290px); border-radius: 120px 120px var(--radius-lg) var(--radius-lg); } }
.page-hero .breadcrumb { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; color: var(--ink-mute); margin-bottom: 1.3rem; }
.page-hero .breadcrumb a:hover { color: var(--gold-deep); }
.page-hero h1 { max-width: 16ch; }
.page-hero h1 .script { display: block; color: var(--gold-deep); font-size: 0.62em; margin-top: 0.3rem; }
.page-hero .lead { margin-top: 1.6rem; max-width: 60ch; color: var(--ink-soft); }
.page-hero-actions { margin-top: 2rem; display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }

/* prose */
.prose { max-width: 760px; }
.prose h2 { margin-bottom: 1.1rem; }
.prose h3 { margin: 2rem 0 0.6rem; }
.prose p { margin-bottom: 1.1rem; }
.prose p .hl { color: var(--gold-deep); font-weight: 700; }
.objective {
  position: relative; background: oklch(0.95 0.025 85); border: 1px solid var(--line-gold);
  padding: 1.6rem 1.7rem 1.6rem 3.2rem; border-radius: var(--radius); margin: 1.6rem 0;
  font-family: var(--serif); font-size: 1.18rem; color: var(--ink); font-style: italic; line-height: 1.45;
}
.objective::before { content: "\201C"; position: absolute; left: 1rem; top: .55rem; font-family: var(--serif); font-size: 2.8rem; line-height: 1; color: var(--gold); opacity: .5; }
.pull-quote { position: relative; margin: 1.8rem 0; padding-top: 2.4rem; max-width: 52ch; }
.pull-quote::before { content: "\201C"; position: absolute; left: -.2rem; top: -.4rem; font-family: var(--serif); font-size: 4rem; line-height: 1; color: var(--gold); opacity: .5; }
.pull-quote p { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink); line-height: 1.45; }
.pull-quote cite { display: block; margin-top: .9rem; font-family: var(--label); font-style: normal; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--gold-deep); }

/* =========================================================================
   PEOPLE BAND — personnages de marque, image de fond statique (sans animation)
   ========================================================================= */
.people-band { height: clamp(118px,12vw,168px); background: url('../img/people/people-band.png') repeat-x center bottom; background-size: auto 100%; border-bottom: 2px solid var(--gold); position: relative; pointer-events: none; }
.people-band::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 34%; background: linear-gradient(180deg, transparent, oklch(0.925 0.030 82)); z-index: -1; }
.people-band--navy { background-color: var(--navy-900); border-bottom-color: rgba(201,160,99,.5); }
.people-band--navy::after { background: linear-gradient(180deg, transparent, var(--navy-900)); }
.people-band--shift-a { background-position-x: 18%; }
.people-band--shift-b { background-position-x: 56%; }
.people-band--shift-c { background-position-x: 82%; }
@media (max-width: 560px) { .people-band { height: 92px; background-size: auto 96%; } }

/* crowd décoratif en fond très léger */
.crowd-bg { position: relative; }
.crowd-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("../img/people/crowd.png") center top / cover no-repeat;
  opacity: 0.05; pointer-events: none;
}
.crowd-bg > * { position: relative; z-index: 1; }

/* intro mission habitée par les personnages */
.mission { position: relative; overflow: hidden; }
.mission::after { content: ""; position: absolute; right: 0; bottom: 0; width: min(60%,640px); height: 78%; background: url('../img/people/crowd.png') right bottom / contain no-repeat; opacity: .16; mix-blend-mode: screen; pointer-events: none; }
.mission .container { position: relative; z-index: 1; }

/* =========================================================================
   SEAL 7,5% (médaillon or)
   ========================================================================= */
.seal {
  width: 132px; height: 132px; border-radius: 50%; flex: none;
  background: radial-gradient(120% 120% at 30% 25%, #e7d3ad 0%, var(--gold) 42%, var(--gold-deep) 100%);
  box-shadow: var(--sh-gold), inset 0 0 0 4px rgba(255,255,255,0.25), inset 0 0 0 5px rgba(151,113,58,0.5);
  display: grid; place-items: center; text-align: center; color: #fff; position: relative;
}
.seal::after { content: ""; position: absolute; inset: 9px; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.55); }
.seal .seal-top { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.52rem; line-height: 1.3; opacity: 0.95; padding: 0 14px; }
.seal .seal-num { font-family: var(--serif); font-weight: 800; font-size: 2.2rem; line-height: 0.9; margin: 2px 0; }
.seal .seal-ttc { font-family: var(--label); letter-spacing: 0.18em; font-size: 0.6rem; }

/* =========================================================================
   INCLUSIONS — ce que comprennent les honoraires
   ========================================================================= */
.incl-band { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-900) 100%); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--sh-lg); position: relative; overflow: hidden; }
.incl-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(201,160,99,0.18), transparent 70%); }
.incl-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; position: relative; }
.incl-head h3 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.incl-tag { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; color: var(--navy-900); background: linear-gradient(120deg, var(--gold-2), var(--gold)); padding: 0.5rem 1rem; border-radius: 100px; white-space: nowrap; font-weight: 400; box-shadow: var(--sh-sm); }
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem 2.2rem; position: relative; }
.incl-grid li { display: flex; gap: 0.7rem; align-items: flex-start; color: rgba(255,255,255,0.86); font-size: 0.97rem; line-height: 1.4; padding: 0.25rem 0; }
.incl-grid li svg { width: 19px; height: 19px; color: var(--gold-2); flex: none; margin-top: 3px; }

/* =========================================================================
   EXEMPLE CONCRET
   ========================================================================= */
.example { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: center; background: oklch(0.95 0.022 85); border: 1px solid var(--line-gold); border-radius: var(--radius-lg); padding: clamp(1.4rem,3vw,2rem); box-shadow: var(--sh-sm); }
.example .ex-icon { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff; display: grid; place-items: center; flex: none; }
.example .ex-icon svg { width: 28px; height: 28px; }
.example .ex-eye { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.7rem; color: var(--gold-deep); }
.example .ex-line { margin-top: 0.2rem; font-size: 1.02rem; color: var(--ink-soft); }
.example .ex-line strong { color: var(--ink); }
.example .ex-amount { font-family: var(--serif); font-weight: 700; color: var(--gold-deep); }

/* pourquoi — 5 piliers */
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.pillar { text-align: center; padding: 1.5rem 1rem; border-radius: var(--radius-lg); transition: transform .4s var(--ease-expo), background .4s ease, box-shadow .4s ease; }
.pillar:hover { transform: translateY(-5px) scale(1.012); background: #fff; box-shadow: var(--sh-md); }
.pillar .p-ic { width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(120% 120% at 30% 20%, var(--cream-3), var(--cream)); border: 1px solid var(--line-gold); color: var(--gold-deep); }
.pillar .p-ic svg { width: 30px; height: 30px; }
.pillar h4 { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem; color: var(--ink); font-weight: 400; margin-bottom: 0.5rem; }
.pillar p { font-size: 0.88rem; color: var(--ink-mute); line-height: 1.5; }
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } .incl-grid { grid-template-columns: 1fr; } .example { grid-template-columns: 1fr; text-align: center; } .example .ex-icon { margin: 0 auto; } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

/* grilles inline ciblées (battent l'inline avec !important) */
.pillars--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .split-intro { grid-template-columns: 1fr !important; }
  .split-intro > aside { position: static !important; top: auto !important; }
  .pillars--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) { .split-2 { grid-template-columns: 1fr !important; } }
@media (max-width: 560px) { .pillars--3 { grid-template-columns: 1fr; } }

/* =========================================================================
   FORM
   ========================================================================= */
.fld { display: flex; flex-direction: column; gap: 0.4rem; }
.fld span { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; color: var(--ink-mute); }
.fld input, .fld select, .fld textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 0.8rem 0.95rem; width: 100%; transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.fld textarea { resize: vertical; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(182, 138, 78, 0.15);
}
.fld input::placeholder, .fld textarea::placeholder { color: var(--ink-mute); opacity: 0.6; }

/* lignes de contact + bouton WhatsApp (refactor des styles inline) */
.ci-row { display: flex; gap: 1rem; align-items: center; padding: .2rem 0; }
.ci-ic { width: 48px; height: 48px; border-radius: 12px; background: var(--cream-3); color: var(--gold-deep); display: grid; place-items: center; flex: none; }
.ci-row strong { display: block; color: var(--ink); }
.ci-row small { color: var(--ink-mute); }
.btn--wa { --btn-bg: #1f9d57; --btn-fg: #fff; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; }
  .estim-form > div:first-child { grid-template-columns: 1fr !important; }
  .footer-col a, .footer-col li { padding-block: .6rem; }
  .footer-contact a { min-height: 44px; align-items: center; }
}

/* =========================================================================
   FLOATING WHATSAPP
   ========================================================================= */
.wa-float { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 80; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6); transition: transform .3s var(--ease-expo), box-shadow .3s var(--ease-expo); }
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 20px 40px -10px rgba(37,211,102,.7); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* =========================================================================
   REVEAL ANIMATION
   ========================================================================= */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease-expo), transform .7s var(--ease-expo); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.js .hero2-photo .hero2-frame { opacity: 0; transform: translateY(14px) scale(.985); transition: opacity .7s var(--ease-expo), transform .8s var(--ease-expo); }
.js .hero2-photo.in .hero2-frame { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .hero2-photo .hero2-frame { opacity: 1; transform: none; transition: none; }
  .btn-ghost svg, .nav a.nav-link::after { transition: none; }
  .btn:active, .service-card:active, .review-card:active, .pillar:active, .wa-float:active, .about-photo .ap-img img, .why-img img { transform: none !important; transition: none; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
/* header pleine largeur : la nav passe en burger à 1080px */
@media (max-width: 1080px) {
  .site-header { background: color-mix(in oklab, var(--cream) 96%, transparent); -webkit-backdrop-filter: saturate(140%) blur(12px); backdrop-filter: saturate(140%) blur(12px); box-shadow: 0 1px 0 var(--line); }
  .nav { display: none; }
  .header-cta .btn { display: none; }
  .burger { display: flex; }
  .header-cta { gap: .25rem; }
  .header-call-mini { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; color: var(--ink); }
  .header-call-mini svg { width: 20px; height: 20px; color: var(--gold-deep); }
}
.header-call-mini { display: none; }
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; }
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin-inline: auto; }
  .hero-copy { padding-bottom: 2rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.is-wide { grid-column: span 2; }
  .about-grid, .price-hero, .why-grid, .cta-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; }
  .about-points { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem 0; }
  .stat:nth-child(3) { border-left: none; }
  .cta-inner { text-align: left; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .trust-grid, .services-grid, .stats-grid, .reviews-top { grid-template-columns: 1fr; }
  .service-card.is-wide { grid-column: auto; }
  .trust-item { border-left: none; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: none; }
  .service-card { padding: 1.7rem 1.4rem; }
  .reviews-top { align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
  .about-photo .ap-tag { right: 0; }
  .fee-row { flex-direction: column; gap: 0.3rem; }
  .stat { border-left: none; }
}

/* =========================================================================
   SYSTEM ADDITIONS v3 — primitives partagées (brief créatif maître)
   Garde-fous : pas de bordure latérale colorée, pas de texte en dégradé, pas
   de glassmorphism déco, pas de hero-metric répété, pas de grille de cards
   identiques, pas de tiret cadratin, motion transform/opacity ease-out-expo.
   ========================================================================= */
:root { --fs-mega: clamp(3.2rem, 8.5vw, 6.6rem); --arch-round: 220px; --arch-segmental: 150px; }
.fs-mega { font-size: var(--fs-mega); line-height: 0.96; letter-spacing: -0.022em; }
.display-line { display: block; }

/* compteur de chapitre éditorial */
.section-index { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--gold-deep); margin-bottom: 1rem; display: inline-flex; align-items: center; gap: 0.6rem; }
.section-index::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.bg-navy .section-index { color: var(--gold-2); }

/* tag-proof (mini pastilles près des CTA) */
.tag-proof { display: inline-flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-proof span { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.66rem; color: var(--ink-soft); background: var(--cream-3); border: 1px solid var(--line-gold); padding: 0.35rem 0.72rem; border-radius: 100px; display: inline-flex; align-items: center; gap: 0.35rem; }
.bg-navy .tag-proof span { color: rgba(255,255,255,0.82); background: rgba(255,255,255,0.06); border-color: rgba(201,160,99,0.4); }

/* cascade stagger (listes longues) */
[data-cascade] > * { opacity: 0; transform: translateY(18px); }
.js [data-cascade].in > * { opacity: 1; transform: none; transition: opacity 0.6s var(--ease-expo), transform 0.7s var(--ease-expo); transition-delay: calc(var(--i, 0) * 55ms); }
@media (prefers-reduced-motion: reduce) { [data-cascade] > * { opacity: 1 !important; transform: none !important; } }

/* signature David réutilisable */
.sign-david { display: flex; align-items: center; gap: 1rem; }
.sign-david img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; object-position: top; filter: grayscale(100%); border: 2px solid var(--gold-soft); flex: none; }
.sign-david .sd-name { font-family: var(--script); font-size: 2rem; color: var(--gold-deep); line-height: 1; }
.sign-david .sd-role { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.13em; font-size: 0.7rem; color: var(--ink-mute); margin-top: 3px; }
.sign-david .sd-role a { color: var(--ink); }
.bg-navy .sign-david .sd-name { color: var(--gold-2); }
.bg-navy .sign-david .sd-role { color: rgba(255,255,255,0.72); }
.bg-navy .sign-david .sd-role a { color: #fff; }
.sign-david--block { flex-direction: column; align-items: flex-start; gap: 0.7rem; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem; box-shadow: var(--sh-sm); }

/* trust-bar (preuve partagée) */
.trust-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1rem, 3vw, 2.6rem); }
.trust-bar .tb-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; color: var(--ink-soft); }
.trust-bar .tb-item strong { color: var(--ink); font-weight: 700; }
.trust-bar .tb-item .stars { color: var(--gold); letter-spacing: 1px; }
.trust-bar img { height: 40px; width: auto; background: #fff; border-radius: 7px; padding: 5px 8px; box-shadow: var(--sh-sm); }
.trust-bar .g-logo { width: 30px; height: 30px; }
.trust-bar--full { padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.25rem,4vw,2.5rem); background: var(--cream-2); border-block: 1px solid var(--line); }
.bg-navy .trust-bar .tb-item { color: rgba(255,255,255,0.82); }
.bg-navy .trust-bar .tb-item strong { color: #fff; }

/* listing-card (annonces réelles) */
.listings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(278px, 1fr)); gap: 1.5rem; }
.listing-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform 0.45s var(--ease-expo), box-shadow 0.45s var(--ease-expo); display: flex; flex-direction: column; }
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.listing-card .lc-media { aspect-ratio: 3/2; position: relative; overflow: hidden; background: var(--cream-3); }
.listing-card .lc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-expo); }
.listing-card:hover .lc-media img { transform: scale(1.05); }
.listing-card .lc-badge { position: absolute; top: 0.9rem; left: 0.9rem; font-family: var(--label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.64rem; padding: 0.4rem 0.8rem; border-radius: 100px; color: #fff; }
.listing-card .lc-badge--rent { background: linear-gradient(120deg, var(--gold), var(--gold-deep)); }
.listing-card .lc-badge--sale { background: var(--navy-900); }
.listing-card .lc-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.listing-card .lc-price { font-family: var(--serif); font-weight: 800; font-size: 1.7rem; color: var(--ink); line-height: 1; }
.listing-card .lc-price small { font-size: 0.5em; font-weight: 600; color: var(--ink-mute); }
.listing-card .lc-loc { font-size: 0.96rem; color: var(--ink-soft); }
.listing-card .lc-specs { display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem; margin-top: 0.1rem; }
.listing-card .lc-specs span { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.84rem; color: var(--ink-mute); }
.listing-card .lc-specs svg { width: 16px; height: 16px; color: var(--gold-deep); }
.listing-card .lc-cta { margin-top: auto; padding-top: 0.5rem; }

/* review-strip (preuve sociale contextualisée sous-pages) */
.review-strip { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.review-strip .rs-score { text-align: center; flex: none; }
.review-strip .rs-num { font-family: var(--serif); font-weight: 800; font-size: 3.4rem; color: var(--ink); line-height: 1; }
.bg-navy .review-strip .rs-num { color: #fff; }
.review-strip .rs-score .stars { color: var(--gold); letter-spacing: 2px; display: block; }
.review-strip .rs-score small { display: block; color: var(--ink-mute); font-size: 0.8rem; margin-top: 0.3rem; }
.review-strip .rs-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--ink); line-height: 1.45; }
.bg-navy .review-strip .rs-quote { color: #fff; }
.review-strip .rs-quote cite { display: block; font-family: var(--label); font-style: normal; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; color: var(--gold-deep); margin-top: 0.8rem; }
.bg-navy .review-strip .rs-quote cite { color: var(--gold-2); }
@media (max-width: 600px) { .review-strip { grid-template-columns: 1fr; text-align: center; } }

/* FAQ accordéon (details/summary natif) */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.3rem 2.6rem 1.3rem 0; position: relative; font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink); font-weight: 700; line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq .faq-ic { position: absolute; right: 0.3rem; top: 1.45rem; width: 18px; height: 18px; color: var(--gold-deep); transition: transform 0.4s var(--ease-expo); }
.faq details[open] .faq-ic { transform: rotate(45deg); }
.faq .faq-a { overflow: hidden; }
.faq .faq-a p { padding-bottom: 1.35rem; color: var(--ink-soft); max-width: 72ch; }
.faq .faq-a p + p { padding-top: 0; margin-top: -0.4rem; }
.faq summary:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; border-radius: 4px; }
.js .faq .faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease-expo); }
.js .faq details[open] .faq-a { grid-template-rows: 1fr; }
.js .faq .faq-a > div { min-height: 0; }

/* comparateur avant/après */
.ba-compare { position: relative; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-lg); user-select: none; touch-action: pan-y; background: var(--cream-3); }
.ba-compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-compare .ba-after { clip-path: inset(0 0 0 var(--ba, 50%)); }
.ba-compare .ba-label { position: absolute; bottom: 1rem; font-family: var(--label); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.66rem; color: #fff; background: rgba(14,34,51,0.6); padding: 0.35rem 0.7rem; border-radius: 100px; z-index: 2; }
.ba-compare .ba-label--before { left: 1rem; }
.ba-compare .ba-label--after { right: 1rem; }
.ba-compare .ba-handle { position: absolute; top: 0; bottom: 0; left: var(--ba, 50%); width: 2px; background: var(--gold-bright); transform: translateX(-1px); z-index: 3; pointer-events: none; }
.ba-compare .ba-handle::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--gold); box-shadow: var(--sh-md), inset 0 0 0 2px rgba(255,255,255,0.6); }
.ba-compare .ba-handle::before { content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: #fff; font-size: 0.9rem; letter-spacing: 2px; z-index: 1; }
.ba-compare input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; z-index: 4; }
.ba-compare input[type=range]:focus-visible ~ .ba-handle::after { outline: 3px solid var(--gold-soft); outline-offset: 3px; }

/* arche utilitaire */
.arch-frame { border-radius: var(--arch-round) var(--arch-round) var(--radius-lg) var(--radius-lg); overflow: hidden; }
.arch-frame--segmental { border-radius: var(--arch-segmental) var(--arch-segmental) var(--radius-lg) var(--radius-lg); }
.arch-oculus { border-radius: 50%; overflow: hidden; }

/* personnage acteur isolé (parallax doux) */
.people-actor { position: absolute; pointer-events: none; will-change: transform; }
.people-actor img { display: block; height: 100%; width: auto; }

/* états de validation formulaire */
.fld.is-error input, .fld.is-error select, .fld.is-error textarea { border-color: #c0563f; box-shadow: 0 0 0 3px rgba(192,86,63,0.14); }
.fld.is-valid input, .fld.is-valid select { border-color: #4f9d6b; }
.fld .fld-msg { font-size: 0.78rem; color: #c0563f; margin-top: 0.25rem; min-height: 0; }
.consent { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.86rem; color: var(--ink-mute); line-height: 1.4; margin-top: 1rem; }
.consent input { margin-top: 0.2rem; width: 18px; height: 18px; accent-color: var(--gold-deep); flex: none; }

/* barre CTA sticky mobile partagée */
.mobile-cta-bar { display: none; }
@media (max-width: 720px) {
  .mobile-cta-bar { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 1px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--line-strong); box-shadow: 0 -6px 24px -10px rgba(14,34,51,0.4); }
  .mobile-cta-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 0.6rem 0.4rem; background: var(--cream-2); color: var(--ink); font-family: var(--label); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.6rem; min-height: 56px; }
  .mobile-cta-bar a svg { width: 19px; height: 19px; }
  .mobile-cta-bar a.mcb-primary { background: var(--navy-900); color: #fff; }
  .mobile-cta-bar a.mcb-wa { color: #1f9d57; }
  .wa-float { bottom: 5rem; }
  body { padding-bottom: 56px; }
}

/* =========================================================================
   AVIS GOOGLE — mis en avant (badge hero + bannière + cartes)
   ========================================================================= */
.google-pill { display: inline-flex; align-items: center; gap: .7rem; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1rem .5rem .65rem; box-shadow: var(--sh-sm); transition: transform .3s var(--ease-expo), box-shadow .3s var(--ease-expo); width: fit-content; max-width: 100%; }
.google-pill:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.google-pill .gp-g { width: 24px; height: 24px; flex: none; }
.google-pill .gp-rate { display: inline-flex; align-items: baseline; gap: .35rem; }
.google-pill .gp-score { font-family: var(--serif); font-weight: 800; color: var(--ink); font-size: 1.12rem; line-height: 1; }
.google-pill .gp-stars { color: var(--gold); letter-spacing: 1px; font-size: .82rem; }
.google-pill .gp-meta { font-size: .74rem; color: var(--ink-mute); border-left: 1px solid var(--line); padding-left: .7rem; line-height: 1.25; }
.google-pill .gp-meta b { color: var(--ink); }
.google-pill .gp-go { color: var(--gold-deep); display: grid; place-items: center; }
.google-pill .gp-go svg { width: 15px; height: 15px; }

/* bannière avis renforcée (section accueil) */
.reviews-banner { display: flex; align-items: center; justify-content: center; gap: clamp(1.2rem,3vw,2.6rem); flex-wrap: wrap; text-align: left; margin-bottom: clamp(2.2rem,4vw,3.2rem); }
.reviews-banner .rb-g { width: clamp(46px,6vw,62px); height: auto; flex: none; }
.reviews-banner .rb-block { display: flex; align-items: baseline; gap: .7rem; }
.reviews-banner .rb-score { font-family: var(--serif); font-weight: 800; font-size: clamp(3rem,6vw,4.6rem); color: var(--ink); line-height: .9; }
.reviews-banner .rb-score small { font-size: .3em; color: var(--ink-mute); font-weight: 700; }
.reviews-banner .rb-stars { color: var(--gold); font-size: clamp(1.2rem,2.4vw,1.7rem); letter-spacing: 3px; display: block; }
.reviews-banner .rb-meta { font-size: .95rem; color: var(--ink-soft); margin-top: .25rem; }
.reviews-banner .rb-meta strong { color: var(--ink); }
.reviews-banner .rb-label { font-family: var(--label); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--gold-deep); display: block; margin-bottom: .25rem; }
.reviews-banner .rb-cta { margin-left: auto; }
@media (max-width: 720px) { .reviews-banner .rb-cta { margin-left: 0; width: 100%; } .reviews-banner .rb-cta .btn { width: 100%; justify-content: center; } }

/* "G" + vérifié sur les cartes d'avis */
.review-card .rc-src .rc-g { width: 14px; height: 14px; vertical-align: -2px; }
.review-card .rc-verified { display: inline-flex; align-items: center; gap: 3px; color: #1f9d57; font-size: .72rem; }
.review-card .rc-verified svg { width: 13px; height: 13px; }

/* badges hero rendus cliquables (location + contact) */
a.loc-hero-badge, a.ctc-rating { text-decoration: none; color: inherit; cursor: pointer; transition: transform .3s var(--ease-expo), box-shadow .3s var(--ease-expo); }
a.loc-hero-badge:hover { transform: translateY(-3px); }
a.ctc-rating:hover { transform: translateY(-2px); }
.loc-hero-badge .lhb-go { margin-left: auto; color: var(--gold-deep); display: grid; place-items: center; opacity: .8; }
.loc-hero-badge .lhb-go svg { width: 16px; height: 16px; }
a.loc-hero-badge:hover .lhb-go { opacity: 1; transform: translateX(2px); }

/* =========================================================================
   CARROUSEL D'AVIS QUI DÉFILENT (natif, façon Trustindex)
   ========================================================================= */
.reviews-marquee { position: relative; overflow: hidden; padding: .6rem 0 1.4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.reviews-marquee-track { display: flex; width: max-content; animation: ti-marquee 70s linear infinite; will-change: transform; }
.reviews-marquee:hover .reviews-marquee-track,
.reviews-marquee:focus-within .reviews-marquee-track { animation-play-state: paused; }
@keyframes ti-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* chaque carte "possède" sa gouttière droite => -50% = exactement un jeu (boucle sans saut) */
.reviews-marquee .review-card { flex: 0 0 clamp(286px, 80vw, 358px); width: clamp(286px, 80vw, 358px); margin-right: 1.5rem; }
.reviews-marquee .review-card p { display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; min-height: 8.1rem; }
.review-card .rc-head { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.review-card .rc-head .rc-g-top { width: 21px; height: 21px; flex: none; }
.review-card .rc-src { flex-wrap: wrap; }
.review-card .rc-date { color: var(--ink-mute); }
@media (prefers-reduced-motion: reduce) {
  .reviews-marquee { overflow-x: auto; scrollbar-width: none; -webkit-mask-image: none; mask-image: none; }
  .reviews-marquee::-webkit-scrollbar { display: none; }
  .reviews-marquee-track { animation: none; }
}

/* =========================================================================
   HERO ACCUEIL — médaillon rond (David + Vieux-Port, cerclé d'or)
   ========================================================================= */
.hero2-photo:has(.hero2-medallion) { padding: clamp(2rem,4vw,3.2rem) clamp(1.4rem,3vw,2.4rem); margin-left: 0; }
.hero2-medallion { position: relative; width: min(100%, 492px); aspect-ratio: 1; margin-inline: auto; isolation: isolate; }
.hero2-medallion picture, .hero2-medallion img { display: block; width: 100%; height: 100%; }
.hero2-medallion img { filter: drop-shadow(0 26px 48px rgba(14,34,51,.26)); }
.hero2-medallion::before { content: ""; position: absolute; inset: -7%; z-index: -1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(231,189,97,.24), rgba(231,189,97,0) 72%); }
@media (max-width: 900px) {
  .hero2-photo:has(.hero2-medallion) { padding: clamp(5rem,12vh,6.5rem) clamp(1.25rem,5vw,2rem) 0.25rem; }
  .hero2-medallion { width: min(82%, 384px); }
}

/* Hero accueil — arche élargie (carrée) pour afficher David EN ENTIER, sans le couper */
.hero2-frame--full { width: min(100%, 500px); aspect-ratio: 1 / 1; border-radius: 200px 200px var(--radius-lg) var(--radius-lg); }
.hero2-frame--full img { object-fit: cover; object-position: 50% 42%; }
@media (max-width: 900px) {
  .hero2-frame--full { width: min(90%, 400px); aspect-ratio: 1 / 1; border-radius: 160px 160px var(--radius-lg) var(--radius-lg); }
}
