/* ═══════════════════════════════════════════════════════════════════
   THE MOTOR HOUSE Group — themotorhouse.group
   Shared stylesheet (homepage + holding page)
═══════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════
   PART 1 — SHARED (homepage + holding)
═══════════════════════════════════════ */


/* ── TOKENS ── */
:root {
  --gold:        rgba(200,184,154,0.85);
  --gold-dim:    rgba(200,184,154,0.45);
  --gold-border: rgba(200,184,154,0.22);
  --ease-lux:    cubic-bezier(0.23,1,0.32,1);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background:#07070A;
  color:#F0F0F4;
  font-family:'Montserrat', sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}


/* ── PAGE HEADER ── */
.page-header {
  position:relative;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center;
  padding:clamp(28px, 4vh, 52px) 32px clamp(20px, 3vh, 38px);
  overflow:hidden;
  z-index:1;
}

/* Grain film */
.page-header::before {
  display:none;
}

/* Glow central chaud + vignette */
.page-header::after {
  display:none;
}

/* Vignette basse — fondu vers contenu */
.header-fade {
  position:absolute; bottom:0; left:0; right:0; height:60px; z-index:2;
  background:linear-gradient(to bottom, transparent, #07070A);
  pointer-events:none;
}

/* Contenu header */
.header-content {
  position:relative; z-index:3;
  animation:heroIn 1.0s var(--ease-lux) 0.1s both;
  display:flex; flex-direction:column; align-items:center; gap:12px;
}
@keyframes heroIn {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Eyebrow */
.eyebrow {
  display:flex; align-items:center; gap:14px;
  font-family:'Montserrat',sans-serif; font-size:0.68rem;
  font-weight:400; letter-spacing:0.28em; text-transform:uppercase;
  color:rgba(200,184,154,0.72);
}
.eyebrow-line {
  display:block; width:30px; height:1px;
  background:linear-gradient(90deg, transparent, rgba(200,184,154,0.48));
}
.eyebrow-line.r {
  background:linear-gradient(90deg, rgba(200,184,154,0.48), transparent);
}

/* Page title */
.page-title {
  font-family:'Cinzel',serif; font-weight:700;
  font-size:clamp(1.7rem, 3.8vw, 3.8rem);
  letter-spacing:0.10em; line-height:1.10; color:#fff;
}
.page-title span {
  background:linear-gradient(110deg,
    #fff 0%, #fff 36%,
    rgba(228,214,192,0.96) 46%, rgba(240,226,204,1) 50%, rgba(228,214,192,0.96) 54%,
    #fff 64%, #fff 100%
  );
  background-size:260% 100%;
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:shimmer 7s linear infinite 2s;
}
@keyframes shimmer {
  0%   { background-position:160% center; }
  100% { background-position:-60% center; }
}

/* Page subtitle */
.page-sub {
  font-family:'Montserrat',sans-serif; font-size:0.82rem;
  font-weight:300; letter-spacing:0.12em;
  color:rgba(255,255,255,0.65);
}

/* Ligne decorative separatrice */
.header-rule {
  position:absolute; bottom:0; left:40px; right:40px; z-index:4;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}


/* ── FOOTER ── */
.site-footer {
  height:64px;
  border-top:1px solid rgba(255,255,255,0.06);
  padding:0 40px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.footer-logo-txt {
  font-family:'Cinzel',serif; font-weight:700; font-size:0.72rem;
  letter-spacing:0.18em; color:rgba(255,255,255,0.75); white-space:nowrap;
}
.footer-center { display:flex; align-items:center; gap:20px; }
.footer-email {
  font-family:'Montserrat',sans-serif; font-size:0.68rem;
  letter-spacing:0.13em; color:rgba(255,255,255,0.75); text-decoration:none; transition:color 0.3s;
}
.footer-email:hover { color:#fff; }
.footer-legal {
  font-family:'Montserrat',sans-serif; font-size:0.65rem;
  letter-spacing:0.13em; text-transform:uppercase;
  color:rgba(255,255,255,0.52); text-decoration:none; transition:color 0.3s;
}
.footer-legal:hover { color:#fff; }
.footer-sep { width:1px; height:14px; background:rgba(255,255,255,0.18); }
.footer-right { display:flex; align-items:center; gap:14px; }
.footer-flags { font-size:0.92rem; opacity:0.90; }
.footer-copy {
  font-family:'Montserrat',sans-serif; font-size:0.65rem;
  color:rgba(255,255,255,0.48); letter-spacing:0.10em;
}


/* ── CARD IN ANIMATION ── */
@keyframes cardIn {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}


/* ── SCROLL REVEAL ── */
.reveal {
  opacity:0; transform:translateY(28px);
  transition: opacity 0.8s var(--ease-lux), transform 0.8s var(--ease-lux);
}
.reveal.visible {
  opacity:1; transform:translateY(0);
}

@keyframes blurFade {
  from { opacity:0; filter:blur(8px); transform:translateY(16px); }
  to   { opacity:1; filter:blur(0); transform:translateY(0); }
}


/* ── NAV BAR (holding page) ── */
.site-nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px 40px;
  display:flex; align-items:center; justify-content:space-between;
  background:rgba(184,188,198,0.06);
  backdrop-filter:blur(28px) saturate(1.8);
  -webkit-backdrop-filter:blur(28px) saturate(1.8);
  border-bottom:1px solid rgba(255,255,255,0.13);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
  transition:all 0.3s;
}
.site-nav .nav-logo { font-family:'Cinzel',serif; font-weight:700; font-size:0.72rem; letter-spacing:0.18em; color:rgba(255,255,255,0.65); text-decoration:none; }
.site-nav .nav-back { font-family:'Montserrat',sans-serif; font-size:0.65rem; letter-spacing:0.14em; text-transform:uppercase; color:rgba(255,255,255,0.38); text-decoration:none; transition:color 0.3s; }
.site-nav .nav-back:hover { color:var(--gold); }


/* ═══════════════════════════════════════
   PART 2 — HOMEPAGE layout & cards
═══════════════════════════════════════ */

body.pg-home {
  display:grid;
  grid-template-rows: auto 1fr 64px;
  height:100vh;
  overflow:hidden;
}

.page-main {
  overflow:hidden;
  padding:16px 40px 16px;
}

.cards-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  height:100%;
}

/* ── CARD ── */
.c2-card {
  position:relative;
  height:100%;
  border-radius:14px;
  overflow:hidden;
  text-decoration:none; color:inherit;
  display:block;
  border:1px solid rgba(255,255,255,0.07);
  transition:border-color 0.4s, transform 0.5s var(--ease-lux);
  animation:cardIn 0.9s var(--ease-lux) both;
}
.c2-card:nth-child(2) { animation-delay:0.12s; }
.c2-card:hover { border-color:rgba(200,184,154,0.20); transform:translateY(-3px); }

.card-bg { position:absolute; inset:0; background:#0A0A0D; }
.card-bg-img {
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(20%); opacity:0.68;
  transition:opacity 0.6s var(--ease-lux), transform 0.7s var(--ease-lux), filter 0.6s;
}
.c2-card:hover .card-bg-img { opacity:0.68; transform:scale(1.04); filter:grayscale(5%); }

.card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.94) 0%,
    rgba(0,0,0,0.72) 40%,
    rgba(0,0,0,0.38) 72%,
    rgba(0,0,0,0.16) 100%
  );
  transition:background 0.5s var(--ease-lux);
}
.c2-card:hover .card-overlay {
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.96) 0%,
    rgba(0,0,0,0.78) 45%,
    rgba(0,0,0,0.44) 74%,
    rgba(0,0,0,0.20) 100%
  );
}

.card-body {
  position:absolute; inset:0;
  padding:clamp(20px, 2.5vh, 36px) clamp(22px, 2.5vw, 44px);
  display:flex; flex-direction:column; justify-content:flex-end;
}
.card-label {
  font-family:'Montserrat',sans-serif; font-size:0.68rem;
  font-weight:500; letter-spacing:0.22em; text-transform:uppercase;
  color:rgba(200,184,154,0.80); margin-bottom:clamp(8px,1.2vh,16px);
}
.card-title {
  font-family:'Cormorant Garamond',serif; font-weight:400;
  font-size:clamp(1.5rem, 2.4vw, 2.4rem);
  line-height:1.15; color:#fff;
  margin-bottom:clamp(8px,1.2vh,14px);
}
.card-desc {
  font-family:'Montserrat',sans-serif; font-size:clamp(0.75rem,0.9vw,0.88rem);
  font-weight:300; line-height:1.78;
  color:rgba(255,255,255,0.78);
  margin-bottom:clamp(14px,1.8vh,28px);
  max-width:380px;
}
.card-cta {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Montserrat',sans-serif; font-size:0.70rem;
  font-weight:500; letter-spacing:0.18em; text-transform:uppercase;
  color:rgba(200,184,154,1);
  transition:gap 0.3s, color 0.3s;
}
.c2-card:hover .card-cta { gap:14px; color:#fff; }
.card-cta svg { transition:transform 0.3s; }
.c2-card:hover .card-cta svg { transform:translateX(4px); }


/* ═══════════════════════════════════════
   PART 3 — HOLDING PAGE STYLES
═══════════════════════════════════════ */


/* ── General holding layout ── */
body.pg-holding {
  overflow-y:auto;
  overflow-x:hidden;
}
body.pg-holding .page-header {
  padding-top:80px; /* account for fixed nav */
}
.hld-wrap {
  max-width:1100px; margin:0 auto; padding:0 40px;
}


/* ── Section 1 — Hook ── */
.hld-hook {
  position:relative; padding:100px 0 80px; overflow:hidden;
}
.hld-hook-bg {
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center;
  filter:grayscale(30%) brightness(0.45); opacity:0.75;
}
.hld-hook-inner {
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.4fr 1fr; gap:64px; align-items:start;
}
.hld-hook-eyebrow {
  font-family:'Montserrat',sans-serif; font-size:0.65rem;
  font-weight:500; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--gold); margin-bottom:18px; opacity:0.80;
}
.hld-hook h2 {
  font-family:'Cormorant Garamond',serif; font-weight:400;
  font-size:clamp(1.6rem,2.8vw,2.6rem); line-height:1.22;
  color:#fff; margin-bottom:20px;
}
.hld-hook h2 em {
  font-style:italic; color:rgba(255,255,255,0.55); display:block; margin-top:4px;
}
.hld-hook-lead,
.hld-lead {
  font-size:0.88rem; font-weight:300; line-height:1.82;
  color:rgba(255,255,255,0.72); margin-bottom:32px; max-width:480px;
}
.hld-hook-lead strong { font-weight:500; color:#fff; }

/* CTA buttons */
.hld-btn-gold {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Montserrat',sans-serif; font-size:0.72rem;
  font-weight:500; letter-spacing:0.14em; text-transform:uppercase;
  color:#07070A; background:var(--gold);
  padding:12px 28px; border-radius:6px;
  text-decoration:none; transition:all 0.3s var(--ease-lux);
  border:1px solid transparent;
}
.hld-btn-gold:hover { background:rgba(200,184,154,1); transform:translateY(-1px); }
.hld-btn-gold svg { width:14px; height:14px; }

.hld-btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Montserrat',sans-serif; font-size:0.72rem;
  font-weight:400; letter-spacing:0.14em; text-transform:uppercase;
  color:rgba(255,255,255,0.72); background:rgba(184,188,198,0.06);
  backdrop-filter:blur(28px) saturate(1.8);
  -webkit-backdrop-filter:blur(28px) saturate(1.8);
  padding:12px 28px; border-radius:6px;
  text-decoration:none; transition:all 0.3s;
  border:1px solid rgba(255,255,255,0.13);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
}
.hld-btn-ghost:hover { color:#fff; background:rgba(22,22,28,0.80); border-color:rgba(255,255,255,0.28); }

.hld-hook-cta,
.hld-hook-ctas { display:flex; gap:14px; flex-wrap:wrap; }

/* Stats grid */
.hld-stats {
  display:grid; grid-template-columns:1fr 1fr; gap:20px;
}
.hld-stat {
  background:rgba(184,188,198,0.06);
  backdrop-filter:blur(28px) saturate(1.8);
  -webkit-backdrop-filter:blur(28px) saturate(1.8);
  border:1px solid rgba(255,255,255,0.13);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius:12px; padding:24px 22px;
  transition:border-color 0.4s, box-shadow 0.4s;
}
.hld-stat:hover {
  border-color:rgba(200,184,154,0.35);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.14), 0 8px 40px rgba(0,0,0,0.38), 0 0 0 1px rgba(200,184,154,0.12);
}
.hld-stat-val {
  font-family:'Cinzel',serif; font-weight:700;
  font-size:clamp(1.8rem,2.5vw,2.4rem);
  color:var(--gold); letter-spacing:0.04em;
  margin-bottom:6px;
}
.hld-stat-lbl {
  font-family:'Montserrat',sans-serif; font-size:0.72rem;
  font-weight:300; line-height:1.55;
  color:rgba(255,255,255,0.52);
}


/* ── Section divider ── */
.hld-divider {
  max-width:1100px; margin:0 auto; padding:0 40px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(200,184,154,0.12), transparent);
}


/* ── Section 2 — Why (4 reasons bento grid) ── */
.hld-why {
  padding:80px 0;
}
.hld-why-header {
  text-align:center; margin-bottom:48px;
}
.hld-why-header h2 {
  font-family:'Cormorant Garamond',serif; font-weight:400;
  font-size:clamp(1.5rem,2.6vw,2.4rem); color:#fff;
  margin-bottom:14px; line-height:1.2;
}
.hld-why-sub {
  font-size:0.85rem; font-weight:300; color:rgba(255,255,255,0.50); max-width:500px; margin:0 auto;
}
.hld-why-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
}
.hld-reason {
  position:relative; border-radius:14px; overflow:hidden;
  min-height:320px; display:flex; flex-direction:column; justify-content:flex-end;
  border:1px solid rgba(255,255,255,0.06);
  transition:border-color 0.4s, transform 0.4s var(--ease-lux);
}
.hld-reason:hover { border-color:var(--gold-border); transform:translateY(-2px); }
.hld-reason-bg {
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center;
  filter:grayscale(30%) brightness(0.35);
  transition:transform 0.6s var(--ease-lux), filter 0.4s;
}
.hld-reason:hover .hld-reason-bg { transform:scale(1.04); filter:grayscale(10%) brightness(0.40); }
.hld-reason-body {
  position:relative; z-index:2;
  padding:28px 30px;
  background:linear-gradient(to top, rgba(7,7,10,0.92) 0%, rgba(7,7,10,0.50) 80%, transparent 100%);
}
.hld-reason-num {
  font-family:'Montserrat',sans-serif; font-size:0.62rem;
  font-weight:500; letter-spacing:0.20em; text-transform:uppercase;
  color:var(--gold); opacity:0.75; margin-bottom:10px;
}
.hld-reason-body h3 {
  font-family:'Cormorant Garamond',serif; font-weight:400;
  font-size:1.25rem; color:#fff; line-height:1.25; margin-bottom:10px;
}
.hld-reason-body p {
  font-size:0.78rem; font-weight:300; line-height:1.72;
  color:rgba(255,255,255,0.62); margin-bottom:12px;
}
.hld-reason-tag {
  display:inline-block;
  font-size:0.60rem; font-weight:500; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--gold); opacity:0.85;
  padding:4px 12px; border-radius:9999px;
  border:1px solid rgba(255,255,255,0.13);
  background:rgba(184,188,198,0.06);
  backdrop-filter:blur(28px) saturate(1.8);
  -webkit-backdrop-filter:blur(28px) saturate(1.8);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
}
/* ── Carte wide (05 · Capacité de financement) ── */
.hld-reason--wide {
  grid-column: 1 / -1;
  min-height:380px;
}
.hld-reason--wide .hld-reason-body {
  background:linear-gradient(to top, rgba(7,7,10,0.96) 0%, rgba(7,7,10,0.70) 60%, rgba(7,7,10,0.30) 100%);
}
.hld-reason--wide .hld-reason-body h4 {
  font-size:1.35rem; max-width:680px;
}
.hld-reason-subs {
  display:grid; grid-template-columns: repeat(3, 1fr); gap:20px;
  margin-top:22px; padding-top:22px;
  border-top:1px solid rgba(255,255,255,0.10);
}
.hld-reason-sub {
  display:flex; flex-direction:column; gap:8px;
}
.hld-reason-sub-label {
  font-family:'Montserrat',sans-serif; font-size:0.62rem; font-weight:600;
  letter-spacing:0.18em; text-transform:uppercase;
  color:var(--gold); opacity:0.9;
}
.hld-reason-sub p {
  font-size:0.76rem; font-weight:300; line-height:1.72;
  color:rgba(255,255,255,0.58); margin-bottom:0;
}
@media (max-width:767px) {
  .hld-reason--wide { grid-column:1; }
  .hld-reason-subs { grid-template-columns:1fr; }
}


/* ── Section 3 — Manage (services grid) ── */
.hld-manage {
  position:relative; padding:80px 0;
  border-top:1px solid rgba(255,255,255,0.04);
  border-bottom:1px solid rgba(255,255,255,0.04);
}
.hld-manage-bg {
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center;
  filter:grayscale(40%) brightness(0.22);
}
.hld-manage > *:not(.hld-manage-bg) { position:relative; z-index:1; }
.hld-manage-title {
  font-family:'Cormorant Garamond',serif; font-weight:400;
  font-size:clamp(1.6rem,2.4vw,2.2rem); color:#fff; line-height:1.2;
  margin-bottom:40px;
}
.hld-manage-title em { font-style:italic; color:var(--gold); }

.hld-services {
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.hld-svc {
  background:rgba(184,188,198,0.06);
  backdrop-filter:blur(28px) saturate(1.8);
  -webkit-backdrop-filter:blur(28px) saturate(1.8);
  border:1px solid rgba(255,255,255,0.13);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius:12px; padding:28px 24px;
  transition:border-color 0.4s, transform 0.3s var(--ease-lux);
}
.hld-svc:hover { border-color:var(--gold-border); transform:translateY(-2px); }
.hld-svc-icon {
  width:36px; height:36px; margin-bottom:16px;
}
.hld-svc-icon svg {
  width:100%; height:100%; fill:none; stroke:var(--gold); stroke-width:1.5;
  stroke-linecap:round; stroke-linejoin:round;
}
.hld-svc h4 {
  font-family:'Montserrat',sans-serif; font-size:0.82rem;
  font-weight:500; color:#fff; margin-bottom:8px; line-height:1.3;
}
.hld-svc p {
  font-size:0.75rem; font-weight:300; line-height:1.72;
  color:rgba(255,255,255,0.58);
}


/* ── Section 4 — Advantages (split: profil + numbered list) ── */
.hld-adv {
  padding:80px 0;
}
.hld-adv-split {
  display:grid; grid-template-columns:0.85fr 1fr; gap:56px; align-items:start;
}

/* Profile card */
.hld-profile {
  position:sticky; top:80px;
  background:rgba(184,188,198,0.06);
  backdrop-filter:blur(28px) saturate(1.8);
  -webkit-backdrop-filter:blur(28px) saturate(1.8);
  border:1px solid rgba(255,255,255,0.13);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius:16px; overflow:hidden;
}
.hld-profile-photo {
  height:180px; overflow:hidden;
  background-size:cover; background-position:center;
  filter:grayscale(30%) brightness(0.40);
}
.hld-profile-body { padding:28px; }
/* When profile has no -body wrapper, apply padding to profile content directly */
.hld-profile > .hld-profile-avatar,
.hld-profile > .hld-profile-name,
.hld-profile > .hld-profile-role,
.hld-profile > .hld-profile-pills,
.hld-profile > .hld-profile-quote { margin-left:28px; margin-right:28px; }
.hld-profile > .hld-profile-avatar { margin-top:24px; }
.hld-profile > .hld-profile-quote { margin-bottom:28px; }
.hld-pill {
  font-size:0.58rem; font-weight:500; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--gold); opacity:0.70;
  padding:4px 10px; border-radius:9999px;
  border:1px solid var(--gold-border);
}
.hld-profile-avatar {
  width:48px; height:48px; border-radius:50%;
  background:rgba(200,184,154,0.15); border:1px solid var(--gold-border);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cinzel',serif; font-size:0.75rem; font-weight:700;
  color:var(--gold); margin-bottom:14px;
}
.hld-profile-name {
  font-family:'Montserrat',sans-serif; font-size:0.88rem;
  font-weight:500; color:#fff; margin-bottom:4px;
}
.hld-profile-role {
  font-size:0.70rem; font-weight:300; line-height:1.6;
  color:rgba(255,255,255,0.48); margin-bottom:16px;
}
.hld-profile-pills {
  display:flex; flex-wrap:wrap; gap:6px; margin-bottom:18px;
}
.hld-profile-pills span {
  font-size:0.58rem; font-weight:500; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--gold); opacity:0.70;
  padding:4px 10px; border-radius:9999px;
  border:1px solid var(--gold-border);
}
.hld-profile-quote {
  font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:0.88rem; font-weight:300; line-height:1.65;
  color:rgba(255,255,255,0.50);
  border-top:1px solid rgba(255,255,255,0.06);
  padding-top:16px;
}

/* Numbered advantages list */
.hld-adv-title {
  font-family:'Cormorant Garamond',serif; font-weight:400;
  font-size:clamp(1.4rem,2.2vw,2rem); color:#fff;
  margin-bottom:32px; line-height:1.2;
}
.hld-adv-list { display:flex; flex-direction:column; gap:0; }
.hld-adv-item {
  display:grid; grid-template-columns:42px 1fr; gap:16px;
  padding:22px 0;
  border-bottom:1px solid rgba(255,255,255,0.05);
  opacity:0; transform:translateY(12px);
  transition:opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}
.hld-adv-item.visible { opacity:1; transform:translateY(0); }
.hld-adv-item:last-child { border-bottom:none; }
.hld-adv-n {
  font-family:'Cinzel',serif; font-weight:700;
  font-size:0.85rem; color:var(--gold); opacity:0.65;
  padding-top:2px;
}
.hld-adv-item h4 {
  font-family:'Montserrat',sans-serif; font-size:0.82rem;
  font-weight:500; color:#fff; margin-bottom:6px; line-height:1.3;
}
.hld-adv-item p {
  font-size:0.76rem; font-weight:300; line-height:1.72;
  color:rgba(255,255,255,0.56);
}


/* ── Section 5 — Process (timeline) ── */
.hld-process {
  padding:80px 0;
}
.hld-process-header {
  margin-bottom:48px;
}
.hld-process-header h2 {
  font-family:'Cormorant Garamond',serif; font-weight:400;
  font-size:clamp(1.4rem,2.4vw,2.2rem); color:#fff;
  margin-bottom:12px; line-height:1.2;
}
.hld-process-header p {
  font-size:0.82rem; font-weight:300; color:rgba(255,255,255,0.48);
}

.hld-process-split {
  display:grid; grid-template-columns:1fr 0.8fr; gap:56px; align-items:start;
}

.hld-steps { position:relative; padding-left:32px; }
/* Vertical gold line */
.hld-steps::before {
  content:''; position:absolute; left:8px; top:8px; bottom:8px;
  width:1px;
  background:linear-gradient(to bottom, var(--gold-border), rgba(200,184,154,0.06));
}
.hld-step {
  position:relative; padding-bottom:36px;
}
.hld-step:last-child { padding-bottom:0; }
.hld-step-dot {
  position:absolute; left:-32px; top:0;
  width:17px; height:17px;
  background:#07070A;
  border:1px solid var(--gold-border);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.hld-step-dot::after {
  content:''; width:5px; height:5px; border-radius:50%;
  background:var(--gold);
}
.hld-step-when {
  font-family:'Montserrat',sans-serif; font-size:0.62rem;
  font-weight:500; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--gold); opacity:0.72; margin-bottom:8px;
}
.hld-step h4 {
  font-family:'Montserrat',sans-serif; font-size:0.85rem;
  font-weight:500; color:#fff; margin-bottom:8px; line-height:1.3;
}
.hld-step p {
  font-size:0.76rem; font-weight:300; line-height:1.72;
  color:rgba(255,255,255,0.56);
}
.hld-step p strong { font-weight:500; color:rgba(255,255,255,0.82); }

/* CTA card next to process */
.hld-cta-card {
  background:rgba(184,188,198,0.06);
  backdrop-filter:blur(28px) saturate(1.8);
  -webkit-backdrop-filter:blur(28px) saturate(1.8);
  border:1px solid rgba(255,255,255,0.13);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius:16px; overflow:hidden;
  position:sticky; top:80px;
}
.hld-cta-photo,
.hld-cta-card-img {
  height:200px; overflow:hidden;
  background-size:cover; background-position:center;
  filter:grayscale(20%) brightness(0.35);
}
.hld-cta-body,
.hld-cta-card-body { padding:28px; }
.hld-cta-badge {
  display:inline-block;
  font-size:0.60rem; font-weight:500; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--gold); opacity:0.70;
  padding:4px 12px; border-radius:9999px; margin-bottom:16px;
  border:1px solid var(--gold-border);
}
.hld-cta-body h3,
.hld-cta-card-body h3 {
  font-family:'Cormorant Garamond',serif; font-weight:400;
  font-size:1.3rem; color:#fff; margin-bottom:10px; line-height:1.2;
}
.hld-cta-body > p,
.hld-cta-card-body > p {
  font-size:0.76rem; font-weight:300; line-height:1.72;
  color:rgba(255,255,255,0.52); margin-bottom:18px;
}
.hld-checklist {
  list-style:none; margin-bottom:24px;
}
.hld-checklist li {
  font-size:0.72rem; font-weight:300; color:rgba(255,255,255,0.62);
  padding:6px 0 6px 18px; position:relative;
  border-bottom:1px solid rgba(255,255,255,0.04);
}
.hld-checklist li:last-child { border-bottom:none; }
.hld-checklist li::before {
  content:''; position:absolute; left:0; top:12px;
  width:7px; height:7px; border-radius:50%;
  border:1px solid var(--gold-border);
}
.hld-btn-full { width:100%; justify-content:center; }


/* ── Section 6 — Contact ── */
.hld-contact {
  padding:80px 0;
  border-top:1px solid rgba(255,255,255,0.04);
}
.hld-contact-grid {
  display:grid; grid-template-columns:1fr auto 1fr; gap:48px; align-items:center;
}
.hld-contact-left h2 {
  font-family:'Cormorant Garamond',serif; font-weight:400;
  font-size:clamp(1.5rem,2.4vw,2.2rem); color:#fff;
  margin-bottom:12px; line-height:1.2;
}
.hld-contact-left h2 em { font-style:italic; color:var(--gold); }
.hld-contact-divider {
  width:40px; height:1px; background:var(--gold-border); margin:16px 0;
}
.hld-contact-left p, .hld-contact-right p {
  font-size:0.82rem; font-weight:300; line-height:1.78;
  color:rgba(255,255,255,0.55);
}
.hld-contact-sep {
  width:1px; height:200px;
  background:linear-gradient(to bottom, transparent, var(--gold-border), transparent);
}
.hld-contact-right h3 {
  font-family:'Montserrat',sans-serif; font-size:0.88rem;
  font-weight:500; color:#fff; margin-bottom:12px;
}
.hld-qr-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:20px; }
.hld-qr-card {
  background:rgba(184,188,198,0.06);
  backdrop-filter:blur(28px) saturate(1.8);
  -webkit-backdrop-filter:blur(28px) saturate(1.8);
  border:1px solid rgba(255,255,255,0.13);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius:12px; padding:18px; text-align:center;
  text-decoration:none; transition:border-color 0.3s;
}
.hld-qr-card:hover { border-color:var(--gold-border); }
.hld-qr-card img {
  width:100%; max-width:140px; border-radius:8px; margin-bottom:10px;
}
.hld-qr-label {
  display:flex; align-items:center; justify-content:center; gap:6px;
}
.hld-qr-label svg {
  width:14px; height:14px; fill:none; stroke:var(--gold); stroke-width:1.5;
  stroke-linecap:round; stroke-linejoin:round;
}
.hld-qr-label span {
  font-size:0.65rem; font-weight:500; letter-spacing:0.14em; text-transform:uppercase;
  color:rgba(255,255,255,0.50);
}


/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width:860px) {
  .site-nav { padding:14px 20px; }
  body.pg-holding .page-header { padding-top:72px; }
  .hld-wrap { padding:0 20px; }
  .hld-hook-inner { grid-template-columns:1fr; gap:36px; }
  .hld-why-grid { grid-template-columns:1fr; }
  .hld-services { grid-template-columns:1fr; }
  .hld-adv-split { grid-template-columns:1fr; }
  .hld-profile { position:static; }
  .hld-process-split { grid-template-columns:1fr; }
  .hld-cta-card { position:static; }
  .hld-contact-grid { grid-template-columns:1fr; gap:32px; }
  .hld-contact-sep { width:100%; height:1px; }

  /* shared */
  body.pg-home { display:block; height:auto; overflow:auto; }
  body.pg-home .page-header { padding:80px 24px 36px; }
  .page-main { padding:16px 20px 0; overflow:visible; height:auto; }
  .cards-grid { grid-template-columns:1fr; gap:16px; height:auto; }
  .c2-card { height:420px; }
  .site-footer { height:auto; padding:20px 24px; flex-wrap:wrap; gap:12px; }
  .footer-center { flex-wrap:wrap; gap:12px; }
  .header-rule { left:20px; right:20px; }
}

/* ═══════════════════════════════════════════════════════════════════
   HOLDING — Corrections UX/UI (typographie, contraste, composants)
═══════════════════════════════════════════════════════════════════ */

/* ── Typographie — tailles lisibles ── */
.hld-lead               { font-size:1rem; line-height:1.82; color:rgba(255,255,255,0.82); }
.hld-stat-lbl           { font-size:0.875rem; color:rgba(255,255,255,0.70); }
.hld-reason-body p      { font-size:1rem; line-height:1.72; color:rgba(255,255,255,0.78); }
/* Hiérarchie : h3 = catégorie (Montserrat caps), h4 = titre principal (Cormorant) */
.hld-reason-body h3     { font-family:'Montserrat',sans-serif; font-size:0.68rem;
                           font-weight:500; letter-spacing:0.18em; text-transform:uppercase;
                           color:rgba(255,255,255,0.50); margin-bottom:8px; }
.hld-reason-body h4     { font-family:'Cormorant Garamond',serif; font-size:1.35rem;
                           font-weight:400; color:#fff; line-height:1.22; margin-bottom:10px; }
.hld-manage-title       { text-align:center; }
.hld-svc p              { font-size:0.9rem; line-height:1.72; color:rgba(255,255,255,0.72); }
.hld-profile-role       { font-size:0.875rem; color:rgba(255,255,255,0.65); line-height:1.65; }
.hld-profile-quote      { font-size:1rem; color:rgba(255,255,255,0.72); line-height:1.70; }
.hld-adv-item p         { font-size:0.9rem; line-height:1.72; color:rgba(255,255,255,0.72); }
.hld-step-when          { font-size:0.72rem; }
.hld-step p             { font-size:0.9rem; line-height:1.72; color:rgba(255,255,255,0.72); }
.hld-process-header p   { font-size:1rem; color:rgba(255,255,255,0.65); }
.hld-why-header p       { font-size:1rem; color:rgba(255,255,255,0.65); }
.hld-cta-card-body > p  { font-size:0.9rem; line-height:1.72; color:rgba(255,255,255,0.65); }
.hld-checklist li       { font-size:0.875rem; color:rgba(255,255,255,0.72); }
.hld-contact-left p,
.hld-contact-right p    { font-size:1rem; color:rgba(255,255,255,0.72); }

/* ── CTA banner (après section Why) ── */
.hld-cta-banner {
  padding:48px 0;
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
  text-align:center;
}
.hld-cta-banner p {
  font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:1.2rem; font-weight:300; color:rgba(255,255,255,0.65);
  margin-bottom:24px;
}

/* ── Formulaire contact ── */
.hld-form { display:flex; flex-direction:column; gap:14px; }
.hld-form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.hld-form input,
.hld-form textarea {
  width:100%; padding:14px 18px;
  background:rgba(184,188,198,0.06);
  backdrop-filter:blur(28px) saturate(1.8);
  -webkit-backdrop-filter:blur(28px) saturate(1.8);
  border:1px solid rgba(255,255,255,0.13);
  border-radius:8px; color:#fff;
  font-family:'Montserrat',sans-serif; font-size:0.875rem; font-weight:300;
  outline:none; transition:border-color 0.3s;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
}
.hld-form input::placeholder,
.hld-form textarea::placeholder { color:rgba(255,255,255,0.35); }
.hld-form input:focus,
.hld-form textarea:focus { border-color:rgba(200,184,154,0.45); }
.hld-form textarea { min-height:120px; resize:vertical; }

/* ── Section contact v2 ── */
.hld-contact-v2 { padding:80px 0; border-top:1px solid rgba(255,255,255,0.04); }
.hld-contact-v2-inner {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start;
}
.hld-contact-v2-left h2 {
  font-family:'Cormorant Garamond',serif; font-weight:400;
  font-size:clamp(1.5rem,2.4vw,2.2rem); color:#fff;
  margin-bottom:16px; line-height:1.2;
}
.hld-contact-v2-left h2 em { font-style:italic; color:var(--gold); }
.hld-contact-v2-left p {
  font-size:1rem; font-weight:300; line-height:1.75;
  color:rgba(255,255,255,0.65); margin-bottom:28px;
}
.hld-contact-guarantee { display:flex; flex-direction:column; gap:10px; }
.hld-contact-guarantee span {
  font-size:0.82rem; color:rgba(255,255,255,0.55);
  display:flex; align-items:center; gap:10px;
}
.hld-contact-guarantee span::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:var(--gold); flex-shrink:0;
}
