/* ============================================================
   JARTIT — Conciergerie Airbnb
   Tanger & Casablanca
   ============================================================ */

/* ---------- Tokens ---------- */
:root{
  /* PALETTE ÉDITORIALE — noir / blanc / sable ultra clair / gris doux */
  --black:        #1A1A1A;   /* noir profond — sections sombres, nav, texte */
  --white:        #FFFFFF;   /* blanc pur — cartes, blocs clairs */
  --sand:         #F7F4EF;   /* sable ultra clair, presque imperceptible */
  --grey:         #8A8780;   /* gris doux — texte secondaire, labels */

  /* Aliases legacy (repointés sur la nouvelle palette pour balayer le code existant) */
  --slate:        #1A1A1A;
  --slate-trust:  #1A1A1A;
  --navy:         #1A1A1A;
  --navy-deep:    #1A1A1A;
  --gold:         #FFFFFF;   /* l'accent doré devient blanc sur fond noir */
  --gold-deep:    #1A1A1A;   /* l'accent doré sur fond clair devient noir */
  --cream:        #FFFFFF;
  --coral:        #1A1A1A;

  --ink:          #1A1A1A;
  --ink-soft:     #8A8780;
  --line-light:   rgba(26,26,26,.12);
  --line-gold:    rgba(255,255,255,.16);

  --display: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  --r: 2px;
  --maxw: 1240px;
  --gut: clamp(22px, 5vw, 64px);
  --nav-h: 76px;

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

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  line-height:1.65;
  font-size:17px;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img,video{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
::selection{ background:var(--gold); color:var(--navy); }

/* ---------- Reusable atoms ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gut); }

.star{ font-style:normal; display:inline-block; }

.tag{
  font-family:var(--sans);
  font-size:12.5px;
  font-weight:500;
  letter-spacing:.26em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:.7em;
  color:var(--gold-deep);
  white-space:nowrap;
}
.hero .tag, .intro .tag{ white-space:normal; }
.tag .star{ color:var(--coral); font-size:1.05em; }
.tag.on-dark{ color:var(--gold); }
.tag.on-dark .star{ color:var(--gold); }

.h-title{
  font-family:var(--display);
  font-weight:300;
  line-height:1.08;
  letter-spacing:-.005em;
  color:var(--ink);
  text-wrap:balance;
}
.h-title em{ font-style:italic; color:var(--coral); }
.on-dark .h-title, .h-title.on-dark{ color:var(--cream); }
.on-dark .h-title em, .h-title.on-dark em{ color:var(--gold); }

.lead{
  font-size:clamp(16px,1.6vw,18.5px);
  color:var(--ink-soft);
  line-height:1.75;
}
.on-dark .lead{ color:rgba(255,255,255,.78); }

/* Section scaffolding */
.section{ padding-block:clamp(72px,9vw,128px); position:relative; }
.section.sand{ background:var(--sand); --sec-bg:var(--sand); }
.section.cream{ background:var(--cream); --sec-bg:var(--cream); }
.section.slate{ background:var(--slate); --sec-bg:var(--slate); }
.section.navy{ background:var(--navy); --sec-bg:var(--navy); }
.section.navy-deep{ background:var(--navy-deep); --sec-bg:var(--navy-deep); }
.section.slate, .section.navy, .section.navy-deep{ color:var(--cream); }

/* Clean, crisp section boundaries — each section keeps its own solid
   background and meets the next with a direct edge (no gradient blend). */
.footer{ position:relative; }

.sec-head{ max-width:720px; }
.sec-head .tag{ margin-bottom:22px; }
.sec-head.center{ margin-inline:auto; text-align:center; }
.sec-head.center .tag{ justify-content:center; }

/* ---------- Buttons ---------- */
.btn{
  font-family:var(--sans);
  font-weight:500;
  font-size:14.5px;
  letter-spacing:.02em;
  padding:15px 26px;
  border-radius:var(--r);
  border:1px solid transparent;
  display:inline-flex;
  align-items:center;
  gap:.6em;
  cursor:pointer;
  transition:all .35s var(--ease);
  white-space:nowrap;
  line-height:1;
}
.btn .ti{ font-size:1.15em; transition:transform .35s var(--ease); }
.btn-gold{ background:var(--gold); color:var(--navy); }
.btn-gold:hover{ background:#333333; transform:translateY(-2px); box-shadow:0 14px 30px -12px rgba(26,26,26,.7); }
.btn-gold:hover .ti{ transform:translateX(4px); }
.btn-outline{ background:transparent; border-color:rgba(255,255,255,.5); color:var(--cream); }
.btn-outline:hover{ border-color:var(--cream); background:rgba(255,255,255,.08); }
.btn-outline.dark{ border-color:var(--line-light); color:var(--ink); }
.btn-outline.dark:hover{ border-color:var(--ink); background:rgba(26,26,26,.05); }
.btn-lg{ padding:18px 34px; font-size:15.5px; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:fixed; inset:0 0 auto 0; z-index:120;
  height:var(--nav-h);
  display:flex; align-items:center;
  transition:background .45s var(--ease), border-color .45s var(--ease), backdrop-filter .45s var(--ease);
  border-bottom:1px solid transparent;
}
.nav .wrap{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.nav.scrolled{
  background:rgba(26,26,26,.92);
  backdrop-filter:blur(14px) saturate(1.2);
  border-bottom-color:var(--line-gold);
}
.brand{
  font-family:var(--display);
  font-weight:500;
  font-size:25px;
  letter-spacing:.42em;
  color:var(--cream);
  display:flex; align-items:center; gap:.55em;
  padding-right:.2em;
}
.brand .star{ color:var(--gold); font-size:.8em; }

.nav-links{ display:flex; align-items:center; gap:34px; list-style:none; }
.nav-links a{
  font-size:14px; font-weight:400; color:rgba(255,255,255,.86);
  letter-spacing:.02em; position:relative; padding-block:6px;
  transition:color .3s;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; height:1px; width:0;
  background:var(--gold); transition:width .35s var(--ease);
}
.nav-links a:hover{ color:var(--cream); }
.nav-links a:hover::after{ width:100%; }

.nav-right{ display:flex; align-items:center; gap:20px; }

/* Language switcher */
.lang{ position:relative; }
.lang-btn{
  font-family:var(--sans); font-size:13px; font-weight:500; letter-spacing:.12em;
  color:rgba(255,255,255,.9); background:transparent;
  border:1px solid rgba(255,255,255,.28); border-radius:var(--r);
  padding:8px 12px; cursor:pointer; display:flex; align-items:center; gap:7px;
  transition:border-color .3s, background .3s;
}
.lang-btn:hover{ border-color:var(--gold); }
.lang-btn .ti{ font-size:15px; opacity:.8; }
.lang-menu{
  position:absolute; top:calc(100% + 8px); right:0; min-width:148px;
  background:var(--cream); border:1px solid var(--line-light);
  border-radius:var(--r); padding:6px; box-shadow:0 20px 44px -18px rgba(0,0,0,.5);
  opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:all .28s var(--ease); z-index:5;
}
.lang.open .lang-menu{ opacity:1; visibility:visible; transform:translateY(0); }
.lang-menu button{
  display:flex; align-items:center; gap:10px; width:100%;
  font-family:var(--sans); font-size:14px; color:var(--ink);
  background:transparent; border:0; border-radius:2px;
  padding:10px 12px; cursor:pointer; text-align:left; transition:background .2s;
}
.lang-menu button:hover{ background:var(--sand); }
.lang-menu button .flag{ font-size:13px; font-weight:600; letter-spacing:.1em; color:var(--gold-deep); width:24px; }
.lang-menu button[aria-selected="true"]{ background:var(--sand); }
.lang-menu button[aria-selected="true"] .check{ margin-left:auto; color:var(--coral); }
.lang-menu button .check{ margin-left:auto; opacity:0; }

.nav-cta{ padding:11px 20px; font-size:13.5px; }

/* Hamburger */
.burger{
  display:none; width:42px; height:42px; border:1px solid rgba(255,255,255,.3);
  border-radius:var(--r); background:transparent; cursor:pointer;
  position:relative; flex:0 0 auto;
}
.burger span{ position:absolute; left:11px; right:11px; height:1.5px; background:var(--cream); transition:.3s var(--ease); }
.burger span:nth-child(1){ top:15px; }
.burger span:nth-child(2){ top:20px; }
.burger span:nth-child(3){ top:25px; }
body.menu-open .burger span:nth-child(1){ top:20px; transform:rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity:0; }
body.menu-open .burger span:nth-child(3){ top:20px; transform:rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; min-height:100svh; display:flex; align-items:center; overflow:hidden; background:var(--navy); }
.hero-video{ position:absolute; top:0; left:0; width:100%; height:112%; object-fit:cover; object-position:center top; z-index:0; }
.hero-fallback{ position:absolute; inset:0; z-index:0; background-size:cover; background-position:center; display:none; }
.hero-scrim{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(90deg,
      rgba(10,9,8,.85) 0%,
      rgba(10,9,8,.65) 35%,
      rgba(10,9,8,.35) 65%,
      rgba(10,9,8,.20) 100%);
  pointer-events:none;
}
.hero .wrap{ position:relative; z-index:2; width:100%; }
.hero-inner{ max-width:620px; padding-top:var(--nav-h); }
.hero .tag{ color:var(--gold); margin-bottom:30px; }
.hero .tag .star{ color:var(--gold); }
.hero h1{
  font-family:var(--display); font-weight:300; color:var(--cream);
  font-size:clamp(44px, 6.4vw, 88px); line-height:1.02; letter-spacing:-.01em;
  margin-bottom:30px; text-wrap:balance;
}
.hero h1 em{ font-style:italic; color:var(--gold); }
.hero-sub{ font-size:clamp(16px,1.7vw,19px); color:rgba(255,255,255,.82); max-width:512px; line-height:1.7; margin-bottom:42px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:16px; }

.scroll-ind{
  position:absolute; left:50%; bottom:34px; transform:translateX(-50%); z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:12px;
  color:rgba(255,255,255,.7); font-size:11px; letter-spacing:.28em; text-transform:uppercase;
}
.scroll-line{ width:1px; height:54px; background:linear-gradient(to bottom, transparent, rgba(255,255,255,.8)); position:relative; overflow:hidden; }
.scroll-line::after{ content:''; position:absolute; top:-50%; left:0; width:100%; height:50%; background:var(--gold); animation:scrollDrop 2.2s var(--ease) infinite; }
@keyframes scrollDrop{ 0%{ top:-50%; } 60%,100%{ top:100%; } }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust{ background:var(--slate-trust); padding-block:clamp(46px,5vw,66px); }
.trust-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.trust-item{ text-align:center; padding:8px 22px; border-left:1px solid var(--line-gold); }
.trust-item:first-child{ border-left:0; }
.trust-num{ font-family:var(--display); font-weight:300; font-size:clamp(40px,4.6vw,60px); color:var(--gold); line-height:1; display:flex; align-items:baseline; justify-content:center; gap:.12em; }
.trust-num .unit{ font-size:.42em; color:var(--coral); }
.trust-lbl{ font-size:13px; color:rgba(255,255,255,.74); letter-spacing:.04em; margin-top:12px; }

/* ============================================================
   INTRO — compressed trust banner
   ============================================================ */
.intro{ padding-block:clamp(34px,4vw,56px); }
.intro .h-title{ font-size:clamp(30px,3.8vw,46px); margin-bottom:0; }
.intro .lead{ font-size:clamp(17px,1.7vw,20px); }
.intro .wrap{ text-align:center; }
.intro .sec-head{ margin-inline:auto; max-width:760px; }
.intro .sec-head .tag{ justify-content:center; margin-bottom:12px; }
.intro .kh-emblem{ margin-bottom:12px; }
.intro-rule{ width:46px; height:1px; background:var(--gold-deep); margin:0 auto 30px; }

/* ============================================================
   HOW IT WORKS — steps
   ============================================================ */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(28px,4vw,64px); margin-top:64px; }
.step{ position:relative; }
.step-ico{
  width:60px; height:60px; border:1px solid var(--line-light); border-radius:var(--r);
  display:flex; align-items:center; justify-content:center; color:var(--slate);
  font-size:27px; margin-bottom:26px; background:var(--sand);
}
.step-num{ font-family:var(--display); font-style:italic; font-size:16px; color:var(--coral); letter-spacing:.04em; margin-bottom:10px; }
.step h3{ font-family:var(--sans); font-weight:500; font-size:15px; letter-spacing:.16em; text-transform:uppercase; color:var(--navy); margin-bottom:14px; }
.step p{ color:var(--ink-soft); font-size:16px; }
.step::after{ content:''; }

/* ============================================================
   SERVICES — grid of 6 on slate
   ============================================================ */
.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin-top:62px; background:var(--line-gold); border:1px solid var(--line-gold); border-radius:var(--r); overflow:hidden; }
.svc{ background:var(--slate); padding:clamp(30px,3vw,44px) clamp(26px,2.6vw,38px); transition:background .4s var(--ease); position:relative; }
.svc:hover{ background:#1A1A1A; }
.svc-ico{ font-size:30px; color:var(--gold); margin-bottom:24px; display:block; }
.svc h3{ font-family:var(--sans); font-weight:500; font-size:13.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--cream); margin-bottom:14px; }
.svc p{ font-size:15px; color:rgba(255,255,255,.74); line-height:1.62; }

/* ============================================================
   IMPACT
   ============================================================ */
.impact-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(40px,6vw,90px); align-items:center; margin-top:18px; }
.impact-big{ font-family:var(--display); font-weight:300; font-size:clamp(110px,15vw,210px); line-height:.86; color:var(--coral); letter-spacing:-.02em; }
.impact-big .pct{ font-size:.5em; vertical-align:super; }
.impact-lead{ font-size:clamp(18px,1.9vw,22px); color:var(--ink); max-width:380px; margin-top:18px; line-height:1.5; font-family:var(--display); font-style:italic; }
.mini-stats{ display:flex; flex-direction:column; }
.mini{ display:flex; align-items:baseline; gap:24px; padding:26px 0; border-top:1px solid var(--line-light); }
.mini:last-child{ border-bottom:1px solid var(--line-light); }
.mini-num{ font-family:var(--display); font-weight:300; font-size:clamp(40px,4.4vw,56px); color:var(--navy); line-height:1; flex:0 0 auto; min-width:130px; }
.mini-lbl{ font-size:15.5px; color:var(--ink-soft); }

/* ============================================================
   TESTIMONIALS — dark editorial, single-column
   ============================================================ */
.testi-ed{
  background:#1A1A1A; color:var(--cream);
  position:relative; overflow:hidden; isolation:isolate;
}

/* --- Ambient decorative layers --- */
.testi-amb{ position:absolute; inset:0; z-index:0; pointer-events:none; }

/* Slow candle-like glow drifting behind the quote */
.testi-glow{
  position:absolute; top:50%; left:50%; width:min(820px,90%); aspect-ratio:1;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(255,255,255,.15) 0%, rgba(255,255,255,.06) 38%, transparent 68%);
  animation:testiGlow 14s ease-in-out infinite;
}
@keyframes testiGlow{
  0%,100%{ transform:translate(-54%,-46%) scale(1); opacity:.85; }
  50%{ transform:translate(-46%,-54%) scale(1.12); opacity:1; }
}

/* Twinkling stars scattered in the background */
.tw-star{
  position:absolute; color:var(--gold); opacity:0; line-height:1;
  transform:scale(.6);
  animation:testiTwinkle var(--d,5s) ease-in-out var(--delay,0s) infinite;
}
@keyframes testiTwinkle{
  0%,100%{ opacity:0; transform:scale(.6); }
  50%{ opacity:.55; transform:scale(1); }
}

/* Fine golden dust motes rising slowly */
.testi-dust{ position:absolute; inset:0; }
.testi-dust i{
  position:absolute; bottom:-10px; width:4px; height:4px; border-radius:50%;
  background:var(--gold); opacity:0;
  animation:testiDust var(--d,14s) linear var(--delay,0s) infinite;
}
@keyframes testiDust{
  0%{ transform:translateY(0); opacity:0; }
  12%{ opacity:.35; }
  85%{ opacity:.28; }
  100%{ transform:translateY(-80vh); opacity:0; }
}

/* --- Content --- */
.testi-ed-inner{
  position:relative; z-index:2; max-width:860px; margin-inline:auto;
  display:flex; flex-direction:column; align-items:center; text-align:center;
}

/* Tag with flanking rules */
.testi-ed-tag{
  display:flex; align-items:center; gap:16px;
  font-family:var(--sans); font-weight:500; font-size:12.5px;
  letter-spacing:.24em; text-transform:uppercase; color:var(--gold);
  margin-bottom:6px;
}
.testi-ed-tag .ln{ width:clamp(28px,5vw,56px); height:1px; background:var(--line-gold); }
.testi-ed-tag .star{ margin-right:.5em; }

/* Decorative open quote mark */
.testi-qmark{
  font-family:var(--display); font-weight:600; color:var(--gold);
  opacity:.16; font-size:clamp(120px,16vw,200px); line-height:.7;
  margin-bottom:-.18em; user-select:none;
}

/* Stage holds stacked cards */
.testi-ed-stage{ position:relative; width:100%; min-height:340px; }
.testi-card{
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center;
  opacity:0; transform:translateY(18px); pointer-events:none;
  transition:opacity .6s var(--ease), transform .6s var(--ease);
}
.testi-card.is-active{ opacity:1; transform:translateY(0); pointer-events:auto; }

.testi-ed-quote{
  font-family:var(--display); font-style:italic; font-weight:400;
  font-size:clamp(23px,2.4vw,30px); line-height:1.5; color:var(--cream);
  max-width:760px; margin:0 auto; quotes:none;
}

/* Stars — pop in one by one when card becomes active */
.testi-ed-stars{ display:flex; gap:8px; margin:30px 0 28px; color:var(--gold); font-size:18px; }
.testi-ed-stars .st{ opacity:0; transform:scale(.4); }
.testi-card.is-active .testi-ed-stars .st{ animation:testiStarPop .45s var(--ease) forwards; }
.testi-card.is-active .testi-ed-stars .st:nth-child(1){ animation-delay:.15s; }
.testi-card.is-active .testi-ed-stars .st:nth-child(2){ animation-delay:.25s; }
.testi-card.is-active .testi-ed-stars .st:nth-child(3){ animation-delay:.35s; }
.testi-card.is-active .testi-ed-stars .st:nth-child(4){ animation-delay:.45s; }
.testi-card.is-active .testi-ed-stars .st:nth-child(5){ animation-delay:.55s; }
@keyframes testiStarPop{
  0%{ opacity:0; transform:scale(.4); }
  60%{ opacity:1; transform:scale(1.18); }
  100%{ opacity:1; transform:scale(1); }
}

.testi-ed-by{ display:flex; flex-direction:column; align-items:center; }
.testi-ava{
  width:56px; height:56px; border-radius:999px;
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
  background:var(--gold); color:#1A1A1A;
  font-family:var(--display); font-weight:600; font-size:20px; letter-spacing:.03em;
}
.testi-name{ font-weight:500; font-size:16px; color:var(--cream); letter-spacing:.01em; }
.testi-meta{ font-size:13.5px; color:rgba(255,255,255,.6); margin-top:5px; }

/* Navigation dots */
.testi-dots{ display:flex; align-items:center; justify-content:center; gap:10px; margin-top:44px; }
.testi-dot{
  width:9px; height:9px; border-radius:999px; border:0; padding:0; cursor:pointer;
  background:rgba(255,255,255,.22); transition:width .4s var(--ease), background .4s var(--ease);
}
.testi-dot:hover{ background:rgba(255,255,255,.4); }
.testi-dot.is-active{ width:38px; background:var(--gold); }

@media (prefers-reduced-motion:reduce){
  .testi-glow, .tw-star, .testi-dust i{ animation:none; }
  .tw-star{ opacity:.3; }
  .testi-card{ transition:opacity .3s linear; transform:none; }
  .testi-card.is-active .testi-ed-stars .st{ animation:none; opacity:1; transform:none; }
}

@media (max-width:720px){
  .testi-ed-stage{ min-height:420px; }
}

/* ============================================================
   CITIES
   ============================================================ */
.cities{ display:grid; grid-template-columns:1fr 1fr; gap:30px; margin-top:60px; }
.city{ position:relative; border-radius:var(--r); overflow:hidden; min-height:480px; display:flex; align-items:flex-end; border:1px solid var(--line-gold); }
.city-img{ position:absolute; inset:0; background-size:cover; background-position:center; transition:transform 1.1s var(--ease); }
.city:hover .city-img{ transform:scale(1.05); }
.city-scrim{ position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.45) 46%, rgba(0,0,0,.15) 100%); }
.city-body{ position:relative; z-index:2; padding:clamp(30px,3.4vw,46px); width:100%; }
.city h3{ font-family:var(--display); font-weight:300; font-size:clamp(34px,3.6vw,46px); color:var(--cream); line-height:1; }
.city-tagline{ font-family:var(--display); font-style:italic; font-size:19px; color:var(--gold); margin-top:6px; margin-bottom:18px; }
.city p{ font-size:15.5px; color:rgba(255,255,255,.8); max-width:90%; margin-bottom:26px; }
.city-stats{ display:flex; gap:30px; padding-top:22px; border-top:1px solid var(--line-gold); }
.city-stat .n{ font-family:var(--display); font-weight:300; font-size:26px; color:var(--gold); line-height:1; }
.city-stat .l{ font-size:12px; color:rgba(255,255,255,.7); letter-spacing:.04em; margin-top:6px; }
.city-ph{ width:100%; height:100%; position:absolute; inset:0; background:
   radial-gradient(120% 90% at 70% 10%, rgba(26,26,26,.34), transparent 60%),
   linear-gradient(150deg, #1A1A1A, #1A1A1A); display:flex; align-items:center; justify-content:center; }
.city-ph .star{ font-size:64px; color:rgba(255,255,255,.18); }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(40px,6vw,84px); align-items:center; }
.founder-portrait{ position:relative; }
.founder-portrait img{ width:100%; border-radius:var(--r); display:block; position:relative; z-index:2; filter:saturate(.96); }
.founder-portrait::before{ content:''; position:absolute; inset:-14px -14px 26px 26px; border:1px solid var(--line-gold); border-radius:var(--r); z-index:1; }
.founder-portrait .corner-star{ position:absolute; right:-12px; bottom:14px; z-index:3; color:var(--gold); font-size:30px; }
.founder .tag{ margin-bottom:24px; }
.founder .h-title{ font-size:clamp(32px,4.2vw,52px); margin-bottom:26px; }
.founder p + p{ margin-top:18px; }
.founder-sign{ margin-top:34px; font-family:var(--display); font-style:italic; font-size:24px; color:var(--gold); }
.founder-role{ font-size:13px; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.6); margin-top:8px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing .sec-head{ margin-inline:auto; text-align:center; }
.pricing .sec-head .tag{ justify-content:center; }
.pricing-lead{ max-width:560px; margin:22px auto 0; text-align:center; }
.price-card{
  max-width:560px; margin:56px auto 0; background:var(--cream);
  border:1px solid var(--gold); border-radius:var(--r); padding:clamp(40px,4vw,56px);
  text-align:center; box-shadow:0 40px 90px -50px rgba(26,26,26,.45); position:relative;
}
.price-card::before{ content:'✦'; position:absolute; top:22px; left:50%; transform:translateX(-50%); color:var(--gold-deep); font-size:18px; }
.price-num{ font-family:var(--display); font-weight:300; font-size:clamp(72px,9vw,104px); line-height:1; color:var(--navy); margin-top:14px; }
.price-num .pct{ color:var(--coral); }
.price-num .price-ht{ font-family:var(--sans); font-weight:500; font-size:.18em; letter-spacing:.18em; color:var(--ink-soft); vertical-align:.85em; margin-left:.18em; text-transform:uppercase; }
.price-sub{ font-size:15px; letter-spacing:.04em; color:var(--ink-soft); margin-top:6px; text-transform:uppercase; letter-spacing:.14em; font-size:12.5px; }
.price-list li strong{ color:var(--navy); font-weight:600; }
.price-list{ list-style:none; text-align:left; max-width:380px; margin:36px auto; display:grid; gap:14px; }
.price-list li{ display:flex; align-items:flex-start; gap:13px; font-size:15.5px; color:var(--ink); }
.price-list .ti{ color:var(--coral); font-size:18px; flex:0 0 auto; margin-top:1px; }
.price-note{ text-align:center; font-size:14px; color:var(--ink-soft); margin-top:26px; font-style:italic; font-family:var(--display); font-size:17px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final{ text-align:center; }
.final .star-big{ font-size:34px; color:var(--gold); display:block; margin-bottom:30px; }
.final h2{ font-family:var(--display); font-weight:300; font-size:clamp(40px,6vw,76px); line-height:1.05; color:var(--cream); margin-bottom:26px; text-wrap:balance; }
.final h2 em{ font-style:italic; color:var(--gold); }
.final p{ max-width:520px; margin:0 auto 40px; color:rgba(255,255,255,.78); font-size:18px; }
.final .btn{ margin-bottom:26px; }
.final-phone{ font-size:15px; color:rgba(255,255,255,.66); }
.final-phone a{ color:var(--gold); border-bottom:1px solid var(--line-gold); padding-bottom:2px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--navy-deep); color:rgba(255,255,255,.72); padding-block:clamp(38px,4.5vw,58px) 22px; }
.footer-grid{ display:grid; grid-template-columns:7cm 1fr 1fr 1.2fr; gap:clamp(24px,3vw,40px); }
.footer .brand{ font-size:22px; margin-bottom:12px; }
.footer-about{ font-size:14px; line-height:1.6; max-width:280px; margin-bottom:16px; }
.footer-soc{ display:flex; gap:12px; }
.footer-soc a{ width:36px; height:36px; border:1px solid var(--line-gold); border-radius:var(--r); display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:17px; transition:all .3s var(--ease); }
.footer-soc a:hover{ background:var(--gold); color:var(--navy-deep); border-color:var(--gold); }
.footer h4{ font-family:var(--sans); font-weight:500; font-size:12.5px; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
.footer-col ul{ list-style:none; display:grid; gap:9px; }
.footer-col a, .footer-col li{ font-size:14px; color:rgba(255,255,255,.72); transition:color .3s; }
.footer-col a:hover{ color:var(--gold); }
.footer-contact li{ display:flex; align-items:center; gap:11px; }
.footer-contact .ti{ color:var(--coral); font-size:16px; flex:0 0 auto; }
.footer-bottom{ margin-top:clamp(26px,3vw,40px); padding-top:18px; border-top:1px solid var(--line-gold); display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; font-size:13px; color:rgba(255,255,255,.5); }

/* ---------- WhatsApp float ---------- */
.wa{
  position:fixed; right:24px; bottom:24px; z-index:130;
  width:58px; height:58px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:30px;
  box-shadow:0 16px 36px -10px rgba(37,211,102,.6); transition:transform .35s var(--ease);
  animation:waPulse 2.6s ease-in-out infinite;
}
.wa:hover{ transform:scale(1.08); }
@keyframes waPulse{ 0%,100%{ box-shadow:0 16px 36px -10px rgba(37,211,102,.6); } 50%{ box-shadow:0 16px 50px -6px rgba(37,211,102,.85); } }

/* ============================================================
   BRAND MARK (keyhole emblem)
   ============================================================ */
.brand-mark{ width:.82em; height:auto; flex:0 0 auto; margin-bottom:.04em; }
.brand-mark path{ fill:var(--gold); }
.footer .brand-mark path{ fill:var(--gold); }

/* Keyhole emblem divider (above section tag) */
.kh-emblem{ display:inline-block; margin-bottom:22px; }
.kh-emblem svg{ width:38px; height:auto; display:block; margin-inline:auto; }
.kh-emblem path{ fill:none; stroke:var(--gold-deep); stroke-width:3.5; }

/* ============================================================
   WHY JARTIT — compact trust pillars (dark circular badges)
   ============================================================ */
.why-row{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:clamp(28px,4vw,56px);
  margin-top:clamp(22px,2.6vw,34px);
}
.why-pillar{ text-align:center; display:flex; flex-direction:column; align-items:center; }
.why-badge{
  width:clamp(52px,4.4vw,60px); aspect-ratio:1; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--navy); color:var(--gold);
  font-size:clamp(23px,2.2vw,27px); margin-bottom:16px;
  box-shadow:0 16px 30px -16px rgba(26,26,26,.5);
  transition:background .45s var(--ease), color .45s var(--ease), transform .45s var(--ease);
}
.why-pillar:hover .why-badge{ background:var(--navy-deep); color:#333333; transform:translateY(-3px); }
.why-title{
  font-family:var(--display); font-weight:500; font-style:normal;
  font-size:clamp(19px,1.7vw,23px); color:var(--navy);
  line-height:1.14; margin-bottom:8px;
}
.why-text{
  font-size:14px; color:var(--ink-soft); line-height:1.58;
  max-width:32ch; margin-inline:auto; text-wrap:pretty;
}

@media (max-width:760px){
  .why-row{ grid-template-columns:1fr; gap:30px; max-width:420px; margin-inline:auto; }
}

/* ============================================================
   PRESTATIONS — tilt cards + accordion + form
   ============================================================ */
.svf .sec-head{ margin-bottom:54px; }
.gcard-grid{ display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.gcard{ position:relative; border-radius:var(--r); cursor:pointer; perspective:1100px; outline:none; -webkit-tap-highlight-color:transparent; }
.gcard-tilt{
  position:relative; height:340px; border-radius:var(--r); overflow:hidden;
  border:1px solid var(--line-gold); transform-style:preserve-3d;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  background:linear-gradient(150deg,#1A1A1A,#1A1A1A); box-shadow:0 30px 60px -40px rgba(0,0,0,.7);
}
.gcard:focus-visible .gcard-tilt{ border-color:var(--gold); }
.gcard-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transform:scale(1.04); transition:transform .8s var(--ease); }
.gcard:hover .gcard-img{ transform:scale(1.10); }
.gcard-scrim{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.42) 48%, rgba(0,0,0,.92) 100%); }
.gcard-glow{ position:absolute; inset:0; opacity:0; transition:opacity .5s var(--ease); background:radial-gradient(closest-side at var(--mx,50%) var(--my,50%), rgba(255,255,255,.30), transparent 70%); mix-blend-mode:screen; }
.gcard:hover .gcard-glow{ opacity:1; }
.gcard-body{ position:absolute; inset:0; padding:clamp(24px,2.6vw,34px); display:flex; flex-direction:column; justify-content:space-between; transform:translateZ(40px); }
.gcard-num{ font-family:var(--display); font-style:italic; font-size:20px; color:var(--gold); align-self:flex-start; }
.gcard-foot{ display:flex; align-items:flex-end; justify-content:space-between; gap:18px; }
.gcard-foot h3{ font-family:var(--display); font-weight:400; font-size:clamp(26px,2.7vw,34px); color:var(--cream); line-height:1.04; letter-spacing:-.01em; }
.gcard-teaser{ font-size:14px; color:rgba(255,255,255,.74); margin-top:8px; max-width:30ch; line-height:1.5; }
.gcard-chev{
  flex:0 0 auto; width:48px; height:48px; border-radius:50%; border:1px solid var(--line-gold);
  display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:22px;
  background:rgba(0,0,0,.35); transition:transform .45s var(--ease), background .45s var(--ease);
}
.gcard:hover .gcard-chev{ background:rgba(255,255,255,.16); }
.gcard.active .gcard-chev{ transform:rotate(180deg); background:var(--gold); color:var(--navy-deep); }
.gcard.active .gcard-tilt{ border-color:var(--gold); }

.gpanel{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .55s var(--ease); }
.gpanel.open{ grid-template-rows:1fr; }
.gpanel-clip{ overflow:hidden; min-height:0; }
.gpanel-card{
  background:var(--cream); color:var(--ink); border:1px solid var(--line-gold); border-radius:var(--r);
  padding:clamp(30px,4vw,54px); margin-top:24px;
  opacity:0; transform:translateY(14px); transition:opacity .5s var(--ease) .12s, transform .5s var(--ease) .12s;
  display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,4vw,58px); align-items:start;
}
.gpanel.open .gpanel-card{ opacity:1; transform:none; }
.gp-content{ min-width:0; }
.gp-content[hidden]{ display:none; }
.gp-title{ font-family:var(--display); font-weight:300; font-size:clamp(26px,2.8vw,38px); line-height:1.12; color:var(--navy); margin-bottom:24px; text-wrap:balance; }
.gp-bullets{ list-style:none; display:grid; gap:16px; margin-bottom:24px; }
.gp-bullets li{ display:flex; align-items:flex-start; gap:14px; font-size:16px; color:var(--ink); }
.gp-bullets li .ti{ color:var(--coral); font-size:21px; flex:0 0 auto; margin-top:1px; }
.gp-bullets.stacked li{ font-size:15.5px; color:var(--ink-soft); line-height:1.6; }
.gp-bullets.stacked strong{ color:var(--navy); font-weight:600; }
.gp-text{ font-size:16px; color:var(--ink-soft); line-height:1.72; }
.gp-content .gp-text + .gp-sub{ margin-top:24px; }
.gp-sub{ font-family:var(--sans); font-weight:500; font-size:13px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-deep); margin-bottom:20px; }

.rdv-form{ background:var(--sand); border:1px solid var(--line-light); border-radius:var(--r); padding:clamp(24px,2.4vw,32px); position:sticky; top:96px; }
.rdv-head{ display:flex; align-items:center; gap:10px; margin-bottom:22px; }
.rdv-head .star{ color:var(--coral); font-size:15px; }
.rdv-head h4{ font-family:var(--display); font-weight:400; font-size:23px; color:var(--navy); }
.rdv-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.rdv-field{ display:flex; flex-direction:column; gap:7px; }
.rdv-field:nth-child(4){ grid-column:1 / -1; }
.rdv-field > span{ font-size:11.5px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-soft); }
.rdv-field input, .rdv-field select{
  font-family:var(--sans); font-size:15px; color:var(--navy); background:var(--cream);
  border:1px solid var(--line-light); border-radius:var(--r); padding:12px 14px; width:100%;
  transition:border-color .25s var(--ease), box-shadow .25s var(--ease); appearance:none;
}
.rdv-field select{ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8780' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 12px center; padding-right:38px; cursor:pointer; }
.rdv-field input::placeholder{ color:#8A8780; }
.rdv-field input:focus, .rdv-field select:focus{ outline:none; border-color:var(--gold-deep); box-shadow:0 0 0 3px rgba(26,26,26,.22); }
.rdv-field input.invalid, .rdv-field select.invalid{ border-color:var(--coral); box-shadow:0 0 0 3px rgba(26,26,26,.18); }
.rdv-submit{ width:100%; justify-content:center; margin-top:20px; }
.rdv-submit .ti{ font-size:19px; }
.rdv-hint{ font-size:12.5px; color:var(--ink-soft); text-align:center; margin-top:14px; line-height:1.5; }

@media (max-width:920px){
  .gcard-grid{ grid-template-columns:1fr; gap:18px; }
  .gcard-tilt{ height:260px; }
  .gpanel-card{ grid-template-columns:1fr; gap:30px; }
  .rdv-form{ position:static; }
}
@media (max-width:520px){
  .rdv-grid{ grid-template-columns:1fr; }
  .gcard-chev{ width:42px; height:42px; font-size:19px; }
}

/* ============================================================
   NOS SERVICES — 3 cartes liens (tilt 3D)
   ============================================================ */
.svf + * { }
.slink-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:60px; }
.slink{ position:relative; border-radius:var(--r); perspective:1100px; outline:none; -webkit-tap-highlight-color:transparent; display:block; }
.slink-tilt{
  position:relative; height:430px; border-radius:var(--r); overflow:hidden;
  border:1px solid var(--line-gold); transform-style:preserve-3d;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  background:linear-gradient(150deg,#1A1A1A,#1A1A1A); box-shadow:0 30px 60px -40px rgba(0,0,0,.7);
}
.slink:focus-visible .slink-tilt{ border-color:var(--gold); }
.slink-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transform:scale(1.04); transition:transform .8s var(--ease); }
.slink:hover .slink-img{ transform:scale(1.11); }
.slink-scrim{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.4) 42%, rgba(0,0,0,.93) 100%); }
.slink-glow{ position:absolute; inset:0; opacity:0; transition:opacity .5s var(--ease); background:radial-gradient(closest-side at var(--mx,50%) var(--my,50%), rgba(255,255,255,.28), transparent 70%); mix-blend-mode:screen; }
.slink:hover .slink-glow{ opacity:1; }
.slink-body{ position:absolute; inset:0; padding:clamp(26px,2.4vw,34px); display:flex; flex-direction:column; justify-content:space-between; transform:translateZ(40px); }
.slink-num{ font-family:var(--display); font-style:italic; font-size:20px; color:var(--gold); align-self:flex-start; }
.slink-foot h3{ font-family:var(--display); font-weight:400; font-size:clamp(25px,2.2vw,30px); color:var(--cream); line-height:1.08; letter-spacing:-.01em; }
.slink-foot p{ font-size:14.5px; color:rgba(255,255,255,.78); margin-top:12px; line-height:1.55; }
.slink-cta{ display:inline-flex; align-items:center; gap:.5em; margin-top:20px; font-size:13px; font-weight:500; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); }
.slink-cta .ti{ font-size:1.25em; transition:transform .4s var(--ease); }
.slink:hover .slink-cta .ti{ transform:translateX(5px); }

@media (max-width:920px){
  .slink-grid{ grid-template-columns:1fr; gap:18px; max-width:480px; margin-inline:auto; }
  .slink-tilt{ height:340px; }
}

/* ============================================================
   CONTACT HUB — sélecteur + formulaire WhatsApp
   ============================================================ */
.section.navy.contact-hub{ padding-block:clamp(56px,6.5vw,92px); }
.contact-hub .sec-head{ margin-bottom:30px; }
.contact-hub .sec-head .lead{ margin-top:12px; }
.ct-card{
  max-width:760px; margin-inline:auto; background:var(--navy-deep);
  border:1px solid var(--line-gold); border-radius:var(--r);
  padding:clamp(22px,2.6vw,36px); box-shadow:0 50px 100px -60px rgba(0,0,0,.8);
}
.ct-step{ font-size:12px; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; text-align:center; }
.ct-selector{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:22px; }
.ct-opt{
  display:flex; align-items:center; justify-content:center; gap:11px;
  font-family:var(--sans); font-size:15px; font-weight:500; color:rgba(255,255,255,.82);
  background:rgba(255,255,255,.04); border:1px solid var(--line-gold); border-radius:var(--r);
  padding:18px 20px; cursor:pointer; text-align:center; line-height:1.3;
  transition:all .35s var(--ease);
}
.ct-opt .ti{ font-size:21px; color:var(--gold); transition:color .35s var(--ease); flex:0 0 auto; }
.ct-opt:hover{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.5); }
.ct-opt.active{ background:var(--gold); color:var(--navy-deep); border-color:var(--gold); }
.ct-opt.active .ti{ color:var(--navy-deep); }

.ct-context{
  display:flex; align-items:center; gap:10px; justify-content:center;
  font-family:var(--display); font-style:italic; font-size:18px; color:var(--gold);
  margin-bottom:18px; padding-bottom:14px; border-bottom:1px solid var(--line-gold); text-align:center;
}
.ct-context .ti{ font-size:20px; flex:0 0 auto; }
.ct-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.ct-field{ display:flex; flex-direction:column; gap:5px; }
.ct-field:nth-child(4){ grid-column:1 / -1; }
.ct-field > span{ font-size:11.5px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.62); }
.ct-field input, .ct-field select{
  font-family:var(--sans); font-size:15px; color:var(--cream); background:rgba(255,255,255,.05);
  border:1px solid var(--line-gold); border-radius:var(--r); padding:10px 13px; width:100%;
  transition:border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); appearance:none;
}
.ct-field select{ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 12px center; padding-right:38px; cursor:pointer; }
.ct-field select option{ color:#1A1A1A; }
.ct-field input::placeholder{ color:rgba(255,255,255,.4); }
.ct-field input:focus, .ct-field select:focus{ outline:none; border-color:var(--gold); background:rgba(255,255,255,.08); box-shadow:0 0 0 3px rgba(255,255,255,.16); }
.ct-field input.invalid, .ct-field select.invalid{ border-color:var(--coral); box-shadow:0 0 0 3px rgba(26,26,26,.22); }
.ct-submit{ width:100%; justify-content:center; margin-top:18px; }
.ct-submit .ti{ font-size:19px; }
.ct-hint{ text-align:center; font-size:14px; color:rgba(255,255,255,.6); margin-top:12px; }
.ct-hint a{ color:var(--gold); border-bottom:1px solid var(--line-gold); padding-bottom:2px; }

@media (max-width:560px){
  .ct-selector{ grid-template-columns:1fr; }
  .ct-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; }
.reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; }
.reveal.d4{ transition-delay:.32s; }
.reveal.d5{ transition-delay:.40s; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1 !important; transform:none !important; }
  html{ scroll-behavior:auto; }
}

/* ============================================================
   MOBILE MENU PANEL
   ============================================================ */
.mobile-panel{
  position:fixed; inset:var(--nav-h) 0 0 0; z-index:115;
  background:var(--navy); padding:38px var(--gut);
  display:flex; flex-direction:column; gap:6px;
  transform:translateY(-12px); opacity:0; visibility:hidden;
  transition:all .4s var(--ease);
}
body.menu-open .mobile-panel{ transform:none; opacity:1; visibility:visible; }
.mobile-panel a{ font-family:var(--display); font-size:30px; font-weight:300; color:var(--cream); padding:14px 0; border-bottom:1px solid var(--line-gold); }
.mobile-panel a:last-of-type{ border-bottom:0; }
.mobile-panel .btn{ margin-top:26px; justify-content:center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  .footer-grid{ grid-template-columns:1fr 1fr; gap:40px; }
  .footer-col.brand-col{ grid-column:1 / -1; }
}
@media (max-width:920px){
  .nav-links{ display:none; }
  .burger{ display:block; }
  .lang-btn .lang-full{ display:none; }
  .nav-cta{ display:none; }
  .steps{ grid-template-columns:1fr; gap:38px; }
  .svc-grid{ grid-template-columns:1fr 1fr; }
  .testi-layout{ grid-template-columns:1fr; gap:40px; max-width:560px; margin-inline:auto; }
  .testi-stage{ min-height:440px; }
  .cities{ grid-template-columns:1fr; }
  .impact-grid{ grid-template-columns:1fr; gap:30px; }
  .founder-grid{ grid-template-columns:1fr; gap:46px; }
  .founder-portrait{ max-width:420px; }
}
@media (max-width:680px){
  body{ font-size:16px; }
  .trust-grid{ grid-template-columns:1fr 1fr; gap:34px 0; }
  .trust-item{ border-left:0; }
  .trust-item:nth-child(odd){ border-right:1px solid var(--line-gold); }
  .svc-grid{ grid-template-columns:1fr; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn{ justify-content:center; }
  .mini-num{ min-width:96px; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-col.brand-col{ grid-column:auto; }
  .scroll-ind{ display:none; }
  .city-stats{ flex-wrap:wrap; gap:18px; }
}
@media (max-width:680px) and (orientation:portrait){
  .hero-video{ display:none; }
  .hero-fallback{ display:block; }
}
@media (max-width: 768px){
  .hero-scrim{
    background: linear-gradient(180deg, rgba(10,9,8,.7) 0%, rgba(10,9,8,.6) 100%);
  }
}

/* ============================================================
   MARCHÉS (cartes ville cliquables + accordéon)
   ============================================================ */
.markets .sec-head{ margin-inline:auto; text-align:center; }
.markets .sec-head .tag{ justify-content:center; }
.mkt-sub{ max-width:600px; margin:18px auto 0; text-align:center; font-size:15.5px; color:rgba(255,255,255,.55); line-height:1.6; }

.mkt-grid{ display:grid; grid-template-columns:1fr 1fr; gap:26px; margin-top:56px; }

/* ---- Card (closed state) ---- */
.mkt-card{ --accent:var(--gold); position:relative; border-radius:var(--r); cursor:pointer; outline:none; -webkit-tap-highlight-color:transparent; }
.mkt-card.tanger{ --accent:#378ADD; }
.mkt-card.casa{ --accent:#EF9F27; }
.mkt-shell{
  position:relative; height:320px; border-radius:var(--r); overflow:hidden;
  border:1px solid var(--line-gold);
  transition:border-color .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease);
  box-shadow:0 30px 60px -42px rgba(0,0,0,.7);
}
.mkt-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transform:scale(1.02); transition:transform .9s var(--ease); }
.mkt-card:hover .mkt-img{ transform:scale(1.06); }
.mkt-scrim{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.30) 50%, rgba(0,0,0,.86) 100%); }
.mkt-front{ position:absolute; inset:0; padding:clamp(24px,2.8vw,36px); display:flex; flex-direction:column; justify-content:space-between; }
.mkt-cardname{ font-family:var(--display); font-weight:300; font-size:clamp(34px,4vw,52px); letter-spacing:.22em; color:#fff; text-transform:uppercase; line-height:1; text-shadow:0 2px 24px rgba(0,0,0,.4); align-self:flex-start; }
.mkt-foot{ display:flex; align-items:center; justify-content:space-between; gap:16px; }
.mkt-discover{ font-family:var(--sans); font-size:12px; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.82); display:inline-flex; align-items:center; gap:.6em; transition:color .4s var(--ease); }
.mkt-discover .dot{ width:5px; height:5px; border-radius:50%; background:var(--accent); transition:box-shadow .4s var(--ease); }
.mkt-card:hover .mkt-discover{ color:#fff; }
.mkt-card:hover .mkt-discover .dot{ box-shadow:0 0 0 4px color-mix(in srgb, var(--accent) 30%, transparent); }
.mkt-chev{ flex:0 0 auto; width:46px; height:46px; border-radius:50%; border:1px solid var(--line-gold); display:flex; align-items:center; justify-content:center; color:#fff; font-size:21px; background:rgba(0,0,0,.4); backdrop-filter:blur(2px); transition:transform .45s var(--ease), background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease); }
.mkt-card:hover .mkt-chev{ border-color:var(--accent); }
.mkt-card.active .mkt-chev{ transform:rotate(180deg); background:var(--accent); border-color:var(--accent); color:#fff; }
.mkt-card.active .mkt-shell{ border-color:var(--accent); }

/* ---- Accordion panel ---- */
.mkt-panel{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .55s var(--ease); }
.mkt-panel.open{ grid-template-rows:1fr; }
.mkt-clip{ overflow:hidden; min-height:0; }
.mkt-panel-card{
  background:#1A1A1A; border:1px solid var(--line-gold); border-radius:var(--r);
  padding:clamp(28px,3.6vw,52px); margin-top:24px;
  opacity:0; transform:translateY(14px); transition:opacity .5s var(--ease) .12s, transform .5s var(--ease) .12s;
}
.mkt-panel.open .mkt-panel-card{ opacity:1; transform:none; }
.mkt-content{ min-width:0; }
.mkt-content[hidden]{ display:none; }

.mkt-pbadge{ display:inline-flex; align-items:center; gap:.5em; font-size:12px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; padding:7px 13px; border-radius:999px; color:var(--accent); background:color-mix(in srgb, var(--accent) 16%, transparent); border:1px solid color-mix(in srgb, var(--accent) 32%, transparent); }
.mkt-pbadge .ti{ font-size:15px; }
.mkt-pname{ font-family:var(--display); font-weight:300; font-size:clamp(34px,4.4vw,54px); color:var(--cream); line-height:1.02; margin-top:18px; }
.mkt-ptag{ font-family:var(--display); font-style:italic; font-size:21px; color:var(--gold); margin-top:4px; }
.mkt-pdesc{ font-size:16px; color:rgba(255,255,255,.66); line-height:1.7; max-width:62ch; margin-top:18px; }

.mkt-keystats{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:32px; padding-top:30px; border-top:1px solid var(--line-gold); }
.mkt-kstat .n{ font-family:var(--display); font-weight:300; font-size:clamp(30px,3.4vw,42px); color:var(--accent); line-height:1; }
.mkt-kstat .n small{ font-size:.42em; letter-spacing:.05em; color:rgba(255,255,255,.5); margin-left:.18em; }
.mkt-kstat .l{ font-size:12.5px; color:rgba(255,255,255,.55); letter-spacing:.04em; margin-top:10px; }

.mkt-cols{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,4vw,56px); margin-top:36px; }
.mkt-coltitle{ font-family:var(--sans); font-weight:500; font-size:11.5px; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-deep); margin-bottom:20px; }

.mkt-chips{ display:flex; flex-wrap:wrap; gap:10px; }
.mkt-chip{ display:inline-flex; align-items:center; gap:.55em; font-size:13.5px; color:rgba(255,255,255,.82); padding:9px 14px; border-radius:999px; background:rgba(255,255,255,.04); border:1px solid var(--line-gold); }
.mkt-chip .ti{ font-size:16px; color:var(--accent); }

.mkt-bars{ display:grid; gap:18px; }
.mkt-bar-top{ display:flex; align-items:baseline; justify-content:space-between; gap:14px; margin-bottom:9px; }
.mkt-bar-top .lbl{ font-size:14px; color:var(--cream); }
.mkt-bar-top .val{ font-size:12.5px; color:rgba(255,255,255,.55); text-align:right; }
.mkt-track{ height:6px; border-radius:999px; background:rgba(255,255,255,.12); overflow:hidden; }
.mkt-track i{ display:block; height:100%; width:0; border-radius:999px; background:var(--accent); transition:width .9s var(--ease); }

/* ---- Key figures banner (toujours visible) ---- */
.mkt-banner{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin-top:30px; background:var(--line-gold); border:1px solid var(--line-gold); border-radius:var(--r); overflow:hidden; }
.mkt-fig{ background:#1A1A1A; padding:clamp(26px,3vw,38px) clamp(22px,2.4vw,34px); }
.mkt-fig .n{ font-family:var(--display); font-weight:300; font-size:clamp(34px,3.8vw,50px); color:var(--gold); line-height:1; display:inline-flex; align-items:baseline; gap:.18em; }
.mkt-fig .n .ti{ font-size:.5em; color:var(--coral); transform:translateY(-2px); }
.mkt-fig .d{ font-size:13.5px; color:rgba(255,255,255,.58); line-height:1.55; margin-top:14px; }

@media (max-width:920px){
  .mkt-grid{ grid-template-columns:1fr; gap:18px; }
  .mkt-shell{ height:240px; }
  .mkt-cols{ grid-template-columns:1fr; gap:30px; }
  .mkt-banner{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .mkt-keystats{ grid-template-columns:1fr; gap:18px; text-align:left; }
  .mkt-chev{ width:42px; height:42px; font-size:19px; }
}
@media (prefers-reduced-motion:reduce){
  .mkt-shell, .mkt-img, .mkt-panel, .mkt-panel-card, .mkt-track i{ transition:none !important; }
}

/* ============================================================
   ÉDITORIAL OVERRIDES — palette stricte noir/blanc/sable/gris
   ============================================================ */
body{ background:var(--sand); color:var(--black); }
::selection{ background:var(--black); color:var(--white); }

/* Section grounds */
.section.sand{ background:var(--sand); }
.section.cream{ background:var(--white); }
.section.slate,
.section.navy,
.section.navy-deep,
.testi-ed,
.footer{ background:var(--black); color:var(--white); }

/* --- Typography ---------------------------------------------- */
.h-title em{ color:inherit; font-style:italic; font-weight:300; }

/* Editorial tag (eyebrow) */
.tag{
  color:var(--grey);
  font-size:11.5px;
  letter-spacing:.3em;
}
.tag .star{ color:var(--black); font-size:.92em; }
.tag.on-dark{ color:rgba(255,255,255,.62); }
.tag.on-dark .star{ color:var(--white); }

/* Optional flanking rules to wrap a centred tag like the testi style */
.sec-head.center .tag{
  display:inline-flex; align-items:center; justify-content:center;
  gap:14px;
}

/* Thin black rule beneath centred section titles */
.sec-head.center .h-title{ position:relative; padding-bottom:26px; margin-bottom:0; }
.sec-head.center .h-title::after{
  content:''; position:absolute; left:50%; bottom:0;
  transform:translateX(-50%);
  width:46px; height:1px; background:var(--black);
}
.on-dark .h-title::after,
.section.slate .sec-head .h-title::after,
.section.navy .sec-head .h-title::after,
.section.navy-deep .sec-head .h-title::after{ background:var(--white); }

/* --- Buttons — rectangular, uppercase, micro-letterspacing ---- */
.btn{
  border-radius:0 !important;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:11.5px;
  font-weight:500;
  padding:17px 28px;
}
.btn-lg{ padding:20px 38px; font-size:12.5px; }
.btn-gold{
  background:var(--black);
  color:var(--white);
  border:1px solid var(--black);
}
.btn-gold:hover{
  background:transparent; color:var(--black);
  transform:none; box-shadow:none;
}
.btn-outline{
  background:transparent;
  border-color:var(--white);
  color:var(--white);
}
.btn-outline:hover{ background:var(--white); color:var(--black); }
.btn-outline.dark{ border-color:var(--black); color:var(--black); }
.btn-outline.dark:hover{ background:var(--black); color:var(--white); }

/* On dark sections, invert primary button */
.section.slate .btn-gold,
.section.navy .btn-gold,
.section.navy-deep .btn-gold,
.testi-ed .btn-gold,
.footer .btn-gold,
.mobile-panel .btn-gold{
  background:var(--white); color:var(--black); border-color:var(--white);
}
.section.slate .btn-gold:hover,
.section.navy .btn-gold:hover,
.section.navy-deep .btn-gold:hover,
.footer .btn-gold:hover,
.mobile-panel .btn-gold:hover{ background:transparent; color:var(--white); }

/* --- Nav ----------------------------------------------------- */
.nav.scrolled{
  background:rgba(26,26,26,.88);
  border-bottom-color:rgba(255,255,255,.12);
}
.brand-mark path{ fill:var(--white); }
.nav-cta{ padding:11px 20px; font-size:11.5px; }

/* --- Hero ---------------------------------------------------- */
.hero{ background:var(--black); }
.hero-scrim{
  background:
    linear-gradient(90deg,
      rgba(10,9,8,.85) 0%,
      rgba(10,9,8,.65) 35%,
      rgba(10,9,8,.35) 65%,
      rgba(10,9,8,.20) 100%);
}
.hero h1 em{ color:inherit; }
.scroll-line{ background:linear-gradient(to bottom, transparent, rgba(255,255,255,.7)); }
.scroll-line::after{ background:var(--white); }

/* --- Intro (sand) — compact, title-only above pillars ------- */
.intro{ padding-block:clamp(48px,6vw,80px); }
.intro .h-title{ font-size:clamp(28px,3.4vw,42px); margin-bottom:0; }
.intro .sec-head{ margin-bottom:clamp(28px,3vw,44px); }
.intro-rule{ background:var(--black); }
.why-row{ margin-top:0; gap:clamp(24px,3vw,44px); }
.why-badge{
  background:var(--black); color:var(--white);
  border-radius:0; box-shadow:none;
  width:clamp(46px,3.6vw,52px);
  font-size:clamp(20px,1.8vw,24px);
}
.why-pillar:hover .why-badge{ background:#000; color:var(--white); }
.why-title{ color:var(--black); font-size:clamp(17px,1.5vw,20px); }
.why-text{ color:var(--grey); font-size:13.5px; }

/* --- Services (black) — numbered editorial cards ------------- */
.section.slate{ padding-block:clamp(90px,11vw,150px); }
.slink-grid{ gap:32px; }
.slink-tilt{
  border:1px solid rgba(255,255,255,.14);
  background:#0F0F0F;
  border-radius:0;
}
.slink-num{
  font-family:var(--display); font-style:italic;
  font-size:clamp(72px,8vw,110px); font-weight:300;
  color:var(--white); opacity:.86; line-height:.9;
  letter-spacing:-.02em;
}
.slink-foot h3{ font-weight:400; letter-spacing:-.005em; }
.slink-cta{ color:var(--white); }

/* --- Testimonials — pure black + softer ambient -------------- */
.testi-ed{ background:var(--black); }
.testi-ed-tag .ln{ background:rgba(255,255,255,.22); }
.testi-glow{
  background:radial-gradient(circle, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 38%, transparent 70%);
}
.tw-star{ color:var(--white); }
.tw-star, .tw-star.is-active{} /* keep animation */
.testi-card.is-active .testi-ed-stars .st{ /* keep */ }
.testi-dust i{ background:var(--white); }
.testi-ava{ background:var(--white); color:var(--black); border-radius:0; }
.testi-dot.is-active{ background:var(--white); }
.testi-ed-stars{ color:var(--white); }

/* --- Founder (black) — editorial collage --------------------- */
.section.navy-deep.founder{ padding-block:clamp(90px,11vw,150px); }
.founder-portrait img{ border-radius:0; }
.founder-portrait::before{
  inset:-16px -16px 28px 28px;
  border:1px solid rgba(255,255,255,.22); border-radius:0;
}
.founder-portrait .corner-star{ color:var(--white); }
.founder-sign{ color:var(--white); }
.founder-role{ letter-spacing:.22em; }

/* --- Pricing (sand) — sharp black-rule card ------------------ */
.price-card{
  background:var(--white);
  border:1px solid var(--black);
  border-radius:0;
  box-shadow:none;
}
.price-card::before{ color:var(--black); }
.price-num{ color:var(--black); letter-spacing:-.02em; }
.price-num .pct{ color:var(--black); }
.price-sub{ color:var(--grey); }
.price-list li{ color:var(--black); }
.price-list .ti{ color:var(--black); }
.price-note{ color:var(--grey); }

/* --- Contact (black) ----------------------------------------- */
.ct-card{
  background:var(--black);
  border:1px solid rgba(255,255,255,.18);
  border-radius:0;
  box-shadow:none;
}
.ct-step{ color:rgba(255,255,255,.7); }
.ct-opt{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.2);
  border-radius:0;
  color:var(--white);
}
.ct-opt .ti{ color:var(--white); }
.ct-opt:hover{ background:rgba(255,255,255,.08); border-color:var(--white); }
.ct-opt.active{
  background:var(--white); color:var(--black); border-color:var(--white);
}
.ct-opt.active .ti{ color:var(--black); }
.ct-context{
  color:rgba(255,255,255,.86);
  border-bottom-color:rgba(255,255,255,.18);
}
.ct-field input, .ct-field select{
  border-radius:0;
  border:1px solid rgba(255,255,255,.22);
  background:transparent;
}
.ct-field input:focus, .ct-field select:focus{
  border-color:var(--white); background:rgba(255,255,255,.05); box-shadow:none;
}
.ct-hint a{ color:var(--white); border-bottom-color:rgba(255,255,255,.4); }

/* ============================================================
   CONTACT HUB — Horizontal light-gray card on black bg
   ============================================================ */
.section.navy.contact-hub{ padding-block:clamp(48px,5.5vw,80px); }

.ct-card-wide{
  --card-bg: #E8E6DF;            /* warm light gray */
  --card-bg-soft: #F1EFEA;       /* slightly lighter for input chips */
  --card-ink: #1A1A1A;
  --card-ink-soft: rgba(26,26,26,.6);
  --card-line: rgba(26,26,26,.16);

  background: var(--card-bg);
  color: var(--card-ink);
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(28px, 3.6vw, 56px);
  padding: clamp(28px, 3.2vw, 48px);
  max-width: 1080px;
  margin-inline: auto;
  box-shadow: 0 60px 120px -60px rgba(0,0,0,.7);
  border-radius: 0;
}

/* ---- LEFT column : info / brand voice ------------------------ */
.ct-card-wide .ct-info{
  display: flex;
  flex-direction: column;
}
.ct-card-wide .ct-eyebrow{
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--card-ink-soft);
  margin: 0 0 16px;
}
.ct-card-wide .ct-title{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.04; letter-spacing: -.01em;
  color: var(--card-ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
.ct-card-wide .ct-title em{ font-style: italic; color: var(--card-ink); }
.ct-card-wide .ct-lead{
  font-size: 14.5px; line-height: 1.55;
  color: rgba(26,26,26,.72);
  max-width: 40ch;
  margin: 0 0 22px;
}
.ct-info-list{
  list-style: none;
  display: grid; gap: 12px;
  padding: 18px 0 0;
  border-top: 1px solid var(--card-line);
  margin: 0 0 22px;
}
.ct-info-list li{ display: grid; gap: 3px; }
.ct-info-lbl{
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(26,26,26,.55);
}
.ct-info-list a,
.ct-info-list li > span:not(.ct-info-lbl){
  font-family: var(--sans);
  font-size: 14.5px; font-weight: 500;
  color: var(--card-ink);
}
.ct-info-list a{
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease);
}
.ct-info-list a:hover{ border-bottom-color: var(--card-ink); }

.ct-follow{ margin-top: auto; }
.ct-follow .ct-info-lbl{ display: block; margin-bottom: 12px; }
.ct-socials{ display: flex; gap: 10px; }
.ct-socials a{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--card-ink);
  color: var(--card-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.ct-socials a:hover{ background: #333; transform: translateY(-2px); }

/* ---- RIGHT column : form ------------------------------------- */
.ct-card-wide .ct-form-col{ min-width: 0; }

.ct-card-wide .ct-step{
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(26,26,26,.55);
  text-align: left;
  margin: 0 0 12px;
}

.ct-card-wide .ct-selector{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 16px;
}
.ct-card-wide .ct-opt{
  background: transparent;
  border: 1px solid rgba(26,26,26,.22);
  border-radius: 0;
  color: var(--card-ink);
  padding: 10px 12px;
  font-size: 13px;
  text-align: left; justify-content: flex-start;
}
.ct-card-wide .ct-opt .ti{ color: var(--card-ink); font-size: 17px; }
.ct-card-wide .ct-opt:hover{
  background: rgba(26,26,26,.05);
  border-color: var(--card-ink);
}
.ct-card-wide .ct-opt.active{
  background: var(--card-ink);
  color: var(--card-bg);
  border-color: var(--card-ink);
}
.ct-card-wide .ct-opt.active .ti{ color: var(--card-bg); }

.ct-card-wide .ct-context{
  display: flex; align-items: center; gap: 8px;
  justify-content: flex-start; text-align: left;
  font-family: var(--display); font-style: italic;
  font-size: 15px;
  color: rgba(26,26,26,.78);
  border-bottom: 1px solid var(--card-line);
  margin: 0 0 14px; padding-bottom: 10px;
}

.ct-card-wide .ct-field > span{
  font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(26,26,26,.6);
}
.ct-card-wide .ct-field input,
.ct-card-wide .ct-field select{
  font-family: var(--sans);
  font-size: 14px;
  color: var(--card-ink);
  background: var(--card-bg-soft);
  border: 1px solid var(--card-line);
  border-radius: 0;
  padding: 10px 12px;
  width: 100%;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.ct-card-wide .ct-field input::placeholder{ color: rgba(26,26,26,.4); }
.ct-card-wide .ct-field input:focus,
.ct-card-wide .ct-field select:focus{
  outline: none;
  border-color: var(--card-ink);
  background: #fff;
  box-shadow: none;
}
.ct-card-wide .ct-field select{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.ct-card-wide .ct-field select option{ color: #1A1A1A; background: #fff; }

.ct-card-wide .ct-submit{
  width: 100%; justify-content: center;
  background: var(--card-ink);
  color: var(--card-bg);
  border: 1px solid var(--card-ink);
  border-radius: 0;
  padding: 14px 22px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.ct-card-wide .ct-submit:hover{
  background: #333; transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.4);
}
.ct-card-wide .ct-submit .ti{ color: var(--card-bg); font-size: 19px; }

.ct-card-wide .ct-hint{
  text-align: left;
  font-size: 13.5px;
  color: rgba(26,26,26,.55);
  margin-top: 12px;
}
.ct-card-wide .ct-hint a{
  color: var(--card-ink);
  border-bottom: 1px solid rgba(26,26,26,.4);
}

/* ---- Responsive --------------------------------------------- */
@media (max-width: 920px){
  .ct-card-wide{
    grid-template-columns: 1fr;
    gap: 40px;
    padding: clamp(28px, 6vw, 44px);
  }
  .ct-card-wide .ct-title{ font-size: clamp(34px, 7vw, 46px); }
  .ct-card-wide .ct-selector{ grid-template-columns: 1fr; }
  .ct-card-wide .ct-grid{ grid-template-columns: 1fr; }
}

/* --- Mobile panel -------------------------------------------- */
.mobile-panel{ background:var(--black); }

/* --- Footer -------------------------------------------------- */
.footer{ background:var(--black); }
.footer-soc a{ border-radius:0; border-color:rgba(255,255,255,.22); color:var(--white); }
.footer-soc a:hover{ background:var(--white); color:var(--black); border-color:var(--white); }
.footer h4{ color:rgba(255,255,255,.65); letter-spacing:.22em; }
.footer-col a:hover{ color:var(--white); }
.footer-contact .ti{ color:var(--white); }
.footer-bottom{ border-top-color:rgba(255,255,255,.14); }

/* --- Small editorial details --------------------------------- */
.lang-btn{ border-radius:0; }
.lang-menu{ border-radius:0; }
.lang-menu button{ border-radius:0; }
.lang-menu button .flag{ color:var(--black); }
.lang-menu button:hover{ background:var(--sand); }
.burger{ border-radius:0; }

/* All section heads centered: tighten max width for tighter focus */
.sec-head.center{ max-width:780px; }

/* Hero CTA buttons keep one black + one outlined white look */
.hero-cta .btn-outline{ border-color:rgba(255,255,255,.55); }
.hero-cta .btn-outline:hover{ background:var(--white); color:var(--black); border-color:var(--white); }
.hero-cta .btn-gold{ background:var(--white); color:var(--black); border-color:var(--white); }
.hero-cta .btn-gold:hover{ background:transparent; color:var(--white); }

/* ============================================================
   JARTIT — Editorial refresh (June 26)
   - .sig-band      : signature marquee on interior background
   - .why-choose    : 2-column "Pourquoi nous choisir"
   - .testi-wall    : concrete-wall testimonials marquee
   Tokens:
   --jt-cream:#f1ece2  --jt-bone:#fbf8f0
   --jt-ink:#1a1612    --jt-gold:#b4a078
   ============================================================ */
:root{
  --jt-cream:#f1ece2;
  --jt-bone:#fbf8f0;
  --jt-ink:#1a1612;
  --jt-gold:#b4a078;
  --jt-gold-soft:#d4c5a8;
}

/* ---------- Marquee primitives (shared) ---------- */
.jt-marquee{
  position:relative;
  width:100%;
  overflow:hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.jt-marquee-track{
  display:flex;
  width:max-content;
  gap: var(--jt-gap, 24px);
  animation: jt-marquee var(--jt-dur, 40s) linear infinite;
  will-change: transform;
}
.jt-marquee-track:hover{ animation-play-state: paused; }
@keyframes jt-marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - (var(--jt-gap, 24px) / 2))); }
}

/* ============================================================
   Signature-style eyebrow label — Cormorant italic, gold lines
   ============================================================ */
.jt-sig-label{
  display:inline-flex;
  align-items:center;
  gap: 14px;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-style:italic;
  font-weight:400;
  font-size: 16px;
  letter-spacing:.01em;
  color: var(--jt-gold);
  margin: 0 0 14px;
}
.jt-sig-label .ln{
  display:inline-block;
  width: 34px;
  height: 1px;
  background: var(--jt-gold);
  opacity:.65;
}
/* On dark backgrounds (navy/black sections), tint with the warm cream-gold */
.jt-sig-label--dark{
  color: var(--jt-gold-soft);
}
.jt-sig-label--dark .ln{
  background: var(--jt-gold);
  opacity:.7;
}

/* ============================================================
   SECTION 1 — Signature band (dark editorial, compact)
   ============================================================ */
.sig-band{
  position:relative;
  isolation:isolate;
  padding: 18px 0 22px;
  background: #0a0908;
  color:#f5f0e8;
  overflow:hidden;
}
.sig-band .sig-head{
  text-align:center;
  margin-bottom: 14px;
  padding-inline:24px;
}
.sig-band .sig-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-style:italic;
  font-size: 16px;
  color: var(--jt-gold-soft);
  letter-spacing:.01em;
}
.sig-band .sig-eyebrow .ln{
  display:inline-block;
  width:34px; height:1px;
  background: var(--jt-gold);
  opacity:.65;
}
.sig-band .jt-marquee{
  --jt-gap: 20px;
  --jt-dur: 40s;
  padding-block: 4px;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.sig-band .sig-card{
  display:inline-flex;
  align-items:center;
  gap:14px;
  height: 52px;
  min-width: 290px;
  padding: 0 22px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  white-space:nowrap;
  transition: border-color .3s ease, background .3s ease;
}
.sig-band .sig-card:hover{
  background: rgba(180,160,120,.12);
  border-color: rgba(180,160,120,.55);
}
.sig-band .sig-card .sig-ico{
  flex:0 0 auto;
  width:18px; height:18px;
  color: var(--jt-gold);
  display:inline-flex;
}
.sig-band .sig-card .sig-ico svg{ width:100%; height:100%; }
.sig-band .sig-card .sig-txt{ display:flex; flex-direction:column; line-height:1.15; }
.sig-band .sig-card .sig-t{
  font-family:'Inter', system-ui, sans-serif;
  font-weight:600;
  font-size:14px;
  color:#fff;
  letter-spacing:.005em;
}
.sig-band .sig-card .sig-s{
  font-family:'Inter', system-ui, sans-serif;
  font-weight:400;
  font-size:11.5px;
  color: rgba(255,255,255,.7);
  letter-spacing:.04em;
}

/* ============================================================
   SECTION 2 — "Pourquoi nous choisir" (solid black)
   ============================================================ */
.why-choose{
  position:relative;
  background: #0a0908;
  color: #f5f0e8;
  padding: clamp(96px, 11vw, 160px) 2rem;
  overflow:hidden;
  isolation:isolate;
}
.why-choose > *{
  position:relative;
  z-index: 2;
}
.why-choose .wc-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.why-choose .wc-tile{
  width:auto; height:auto;
  background: transparent;
  border-radius: 0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  margin-bottom: clamp(28px, 3vw, 40px);
  box-shadow: none;
}
.why-choose .wc-tile svg{
  width: 96px; height: 120px;
  color: #fff;
  display:block;
}
.why-choose .wc-title{
  font-family:'Bodoni Moda','Bodoni 72', Didot, serif;
  font-weight:400;
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing:-.005em;
  color: #f5f0e8;
  margin: 0 0 18px;
}
.why-choose .wc-title em{
  font-style:italic;
  font-weight:400;
  color: var(--jt-gold-soft);
}
.why-choose .wc-lead{
  font-family:'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245,240,232,.78);
  max-width: 360px;
}
.why-choose .wc-lead strong{
  font-weight: 600;
  color: var(--jt-gold);
}
.why-choose .wc-title{
  font-family:'Bodoni Moda','Bodoni 72', Didot, serif;
  font-weight:400;
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing:-.005em;
  color: #f5f0e8;
  margin: 0 0 18px;
}
.why-choose .wc-title em{
  font-style:italic;
  font-weight:400;
  color: var(--jt-gold-soft);
}
.why-choose .wc-lead{
  font-family:'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245,240,232,.78);
  max-width: 360px;
}
.why-choose .wc-lead strong{
  font-weight: 600;
  color: var(--jt-gold);
}
.why-choose .wc-list{
  display:flex;
  flex-direction:column;
  gap: 16px;
}
.why-choose .wc-card{
  display:flex;
  align-items:center;
  gap: 20px;
  padding: 22px 26px;
  background: #faf7f0;
  border: 1px solid rgba(180,160,120,.18);
  border-radius: 14px;
  box-shadow: 0 8px 24px -16px rgba(26,22,18,.18);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.why-choose .wc-card:hover{
  transform: translateY(-2px);
  border-color: rgba(180,160,120,.5);
  box-shadow: 0 14px 30px -16px rgba(26,22,18,.28);
}
.why-choose .wc-mini{
  flex: 0 0 auto;
  width: 52px; height: 52px;
  background: #fbeede;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.why-choose .wc-mini svg{
  width: 24px; height: 24px;
  color: #d18b4a;
  stroke-width: 1.75;
}
.why-choose .wc-c-title{
  font-family:'Bodoni Moda', serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: var(--jt-ink);
  margin: 4px 0 6px;
}
.why-choose .wc-c-body{
  font-family:'Inter', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #5a5048;
  margin: 0;
}

/* Sequential fade-up */
.why-choose .wc-card{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1),
              transform .8s cubic-bezier(.2,.7,.2,1),
              border-color .3s ease,
              box-shadow .3s ease;
}
.why-choose.in .wc-card{
  opacity: 1;
  transform: translateY(0);
}
.why-choose .wc-card:nth-child(1){ transition-delay: .05s; }
.why-choose .wc-card:nth-child(2){ transition-delay: .15s; }
.why-choose .wc-card:nth-child(3){ transition-delay: .25s; }

@media (max-width: 820px){
  .why-choose{
    background-position: 60% center;
    padding: 4rem 1.5rem;
  }
  .why-choose .wc-wrap{ grid-template-columns: 1fr; gap: 50px; }
  .why-choose .wc-tile{ width: 150px; height: 150px; margin: 0 auto 24px; }
  .why-choose .wc-tile svg{ width: 60px; height: 78px; }
  .why-choose .wc-left{ text-align:center; }
  .why-choose .wc-lead{ margin: 0 auto; }
}

/* ============================================================
   SECTION 3 — Testimonials wall (solid black + marquee)
   ============================================================ */
.testi-wall{
  position:relative;
  isolation:isolate;
  padding: clamp(80px, 9vw, 130px) 0;
  color:#fff;
  overflow:hidden;
  background:#0a0908;
}
.testi-wall .tw-head{
  text-align:center;
  margin-bottom: clamp(46px, 5vw, 70px);
  padding-inline:24px;
}
.testi-wall .tw-label{
  display:inline-block;
  font-family:'Inter', system-ui, sans-serif;
  font-weight:500;
  font-size: 12px;
  letter-spacing:.4em;
  text-transform:uppercase;
  color: var(--jt-gold);
  margin-bottom: 22px;
}
.testi-wall .tw-title{
  font-family:'Bodoni Moda','Bodoni 72', Didot, serif;
  font-weight:400;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -.005em;
  color: var(--jt-bone);
  margin:0;
}
.testi-wall .tw-title em{
  font-style:italic;
  font-weight:400;
  color: var(--jt-gold-soft);
}
.testi-wall .tw-rule{
  display:block;
  width:48px; height:1px;
  background: var(--jt-gold);
  margin: 22px auto 0;
}
.testi-wall .jt-marquee{
  --jt-gap: 22px;
  --jt-dur: 60s;
}
.testi-wall .tw-card{
  position:relative;
  flex: 0 0 auto;
  width: 340px;
  padding: 24px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  color: var(--jt-bone);
  display:flex;
  flex-direction:column;
  gap: 16px;
}
.testi-wall .tw-quote-deco{
  position:absolute;
  top: 10px;
  right: 22px;
  font-family:'Bodoni Moda', serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(180,160,120,.45);
  pointer-events:none;
  user-select:none;
}
.testi-wall .tw-who{
  display:flex;
  align-items:center;
  gap: 14px;
  z-index:1;
}
.testi-wall .tw-ava{
  width:56px; height:56px;
  border-radius:50%;
  background: transparent;
  border: 1px solid rgba(180,160,120,.45);
  overflow: hidden;
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Bodoni Moda', serif;
  font-weight:500;
  font-size: 18px;
  color: var(--jt-gold-soft);
  flex: 0 0 auto;
  letter-spacing:.02em;
}
.testi-wall .tw-ava img{
  width:100%; height:100%;
  object-fit: cover;
  object-position: center top;
  display:block;
  transition: transform .6s ease;
}
.testi-wall .tw-card:hover .tw-ava img{
  transform: scale(1.08);
}
.testi-wall .tw-name{
  font-family:'Inter', system-ui, sans-serif;
  font-weight:500;
  font-size: 14px;
  color:#fff;
  letter-spacing:.005em;
}
.testi-wall .tw-loc{
  font-family:'Inter', system-ui, sans-serif;
  font-weight:400;
  font-size: 11.5px;
  color: rgba(255,255,255,.65);
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-top: 4px;
}
.testi-wall .tw-text{
  font-family:'Cormorant Garamond', Georgia, serif;
  font-style:italic;
  font-weight:400;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(245,240,232,.92);
  margin: 0;
}
.testi-wall .tw-stars{
  display:flex;
  gap: 4px;
  color: var(--jt-gold);
  font-size: 14px;
  letter-spacing: 2px;
}

@media (max-width: 600px){
  .testi-wall .tw-card{ width: 280px; padding: 20px; }
  .testi-wall{ padding: 70px 0; }
}

/* Reduced-motion: stop marquee, allow horizontal manual scroll */
@media (prefers-reduced-motion: reduce){
  .jt-marquee{
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .jt-marquee-track{ animation: none; width: max-content; }
  .why-choose .wc-card{ opacity:1; transform:none; transition: none; }
}

/* ============================================================
   POURQUOI NOUS CHOISIR — Style "Le Trait" (outline + voilage)
   ============================================================ */
.why-us {
  position: relative;
  padding: 6rem 2rem;
  background-image: url('./assets/pexels-elgolovchenko-8093107.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-color: transparent;
  overflow: hidden;
  isolation: isolate;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 9, 8, 0.62) 0%,
    rgba(10, 9, 8, 0.78) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.why-us__header,
.why-us__grid {
  position: relative;
  z-index: 2;
}
.why-us__header {
  text-align: center;
  margin-bottom: 3rem;
}
.why-us__label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b4a078;
  margin-bottom: 0.75rem;
  animation: whyUsFadeIn 0.8s ease-out both;
}
.why-us__title {
  font-family: 'Bodoni Moda', serif;
  font-size: 42px;
  font-weight: 400;
  color: #f5f0e8;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.1;
  animation: whyUsFadeUp 0.8s ease-out 0.15s both;
}
.why-us__title em {
  font-style: italic;
  color: #d4c5a8;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  border: 0.5px solid rgba(180, 160, 120, 0.45);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  background: rgba(10, 9, 8, 0.20);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
  animation: whyUsFadeUp 0.7s ease-out both;
}
@supports not (border-width: 0.5px) {
  .why-card { border-width: 1px; border-color: rgba(180, 160, 120, 0.32); }
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.03);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.why-card:hover {
  border-color: rgba(180, 160, 120, 0.8);
  background: rgba(10, 9, 8, 0.35);
  transform: translateY(-2px);
}
.why-card:hover::before { opacity: 1; }
.why-card:nth-child(1) { animation-delay: 0.30s; }
.why-card:nth-child(2) { animation-delay: 0.45s; }
.why-card:nth-child(3) { animation-delay: 0.60s; }
.why-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  position: relative;
}
.why-card__num {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 36px;
  color: #b4a078;
  line-height: 0.9;
}
.why-card__icon {
  color: rgba(180, 160, 120, 0.6);
  display: inline-flex;
}
.why-card__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.why-card__title {
  font-family: 'Bodoni Moda', serif;
  font-size: 20px;
  font-weight: 500;
  color: #f5f0e8;
  margin: 0 0 0.5rem;
  line-height: 1.15;
  letter-spacing: -0.2px;
  position: relative;
}
.why-card__title em {
  font-style: italic;
  font-weight: 400;
}
.why-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.55;
  margin: 0;
  position: relative;
}
@keyframes whyUsFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes whyUsFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .why-us__grid { grid-template-columns: 1fr; gap: 0.75rem; max-width: 480px; }
  .why-us__title { font-size: 34px; }
  .why-us { padding: 4rem 1.25rem; background-position: 60% center; }
}
@media (prefers-reduced-motion: reduce) {
  .why-card, .why-us__title, .why-us__label { animation: none; }
}

/* ============================================================
   PRICING — editorial (Vogue / gallery)
   ============================================================ */
.pricing-ed{
  position:relative;
  background:#0a0908;
  color:#f5f0e8;
  padding: clamp(96px, 11vw, 180px) 0 clamp(110px, 12vw, 200px);
  overflow:hidden;
  isolation:isolate;
}
.pricing-ed .pe-glow{
  position:absolute; inset:-20% -10%;
  z-index:0;
  background:
    radial-gradient(ellipse 55% 45% at 25% 30%, rgba(245,235,212,.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 75% 75%, rgba(180,160,120,.06) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events:none;
  animation: pe-drift 22s ease-in-out infinite alternate;
}
@keyframes pe-drift{
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-4%, 3%) scale(1.08); }
}
.pricing-ed .pe-wrap{
  position:relative; z-index:1;
  max-width:1180px;
  margin:0 auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

/* ---- Header ---- */
.pricing-ed .pe-head{
  text-align:center;
  margin-bottom: clamp(60px, 7vw, 110px);
}
.pricing-ed .pe-eyebrow{
  display:inline-flex; align-items:center; gap:18px;
  font-family:'Inter', system-ui, sans-serif;
  font-size:13px;
  font-weight:500;
  letter-spacing:.4em;
  text-transform:uppercase;
  color:#b4a078;
  margin-bottom:34px;
}
.pricing-ed .pe-eyebrow .ln{
  width:38px; height:1px; background:#b4a078;
  opacity:.7;
}
.pricing-ed .pe-title{
  font-family:'Bodoni Moda','Bodoni 72',Didot,'Playfair Display',serif;
  font-weight:400;
  font-size:clamp(46px, 6.4vw, 92px);
  line-height:1.04;
  letter-spacing:-.01em;
  color:#f5f0e8;
  margin:0;
}
.pricing-ed .pe-title .pe-line{ display:block; }
.pricing-ed .pe-title .pe-italic{
  font-style:italic;
  font-weight:400;
  color:#d4c5a8;
}
.pricing-ed .pe-sub{
  margin: 28px auto 0;
  max-width:640px;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-style:italic;
  font-weight:400;
  font-size:clamp(17px, 1.5vw, 21px);
  line-height:1.55;
  color:#c9bfae;
}
.pricing-ed .pe-sub .pe-dash{ color:#b4a078; margin-inline:6px; }

/* ---- Hero card (20%) ---- */
.pricing-ed .pe-hero{
  margin-bottom: clamp(70px, 8vw, 120px);
}
.pricing-ed .pe-hero-inner{
  position:relative;
  background:#f1ece2;
  color:#0a0908;
  border:1px solid rgba(10,9,8,.18);
  padding: clamp(38px, 4.4vw, 64px) clamp(28px, 4vw, 64px);
}
.pricing-ed .pe-hero-inner::before{
  content:"";
  position:absolute; inset:12px;
  border:1px solid rgba(180,160,120,.45);
  pointer-events:none;
}
.pricing-ed .pe-hero-tl,
.pricing-ed .pe-hero-tr{
  position:absolute;
  z-index:2;
  font-family:'Inter', system-ui, sans-serif;
}
.pricing-ed .pe-hero-tl{
  top: clamp(22px, 2.4vw, 32px);
  left: clamp(28px, 3vw, 44px);
  font-size:12px;
  font-weight:500;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:#b4a078;
}
.pricing-ed .pe-hero-tr{
  top: clamp(20px, 2.2vw, 30px);
  right: clamp(26px, 2.8vw, 42px);
  font-size:18px;
  color:#b4a078;
}
.pricing-ed .pe-hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items:center;
  margin-top: clamp(36px, 4vw, 56px);
}
.pricing-ed .pe-hero-grid::before{
  content:"";
  position:absolute;
  top:8%; bottom:8%;
  left:50%;
  width:1px;
  background:linear-gradient(180deg, transparent, rgba(10,9,8,.18) 18%, rgba(10,9,8,.18) 82%, transparent);
}
.pricing-ed .pe-hero-left{ text-align:center; padding-right: clamp(8px, 2vw, 20px); }
.pricing-ed .pe-hero-kicker{
  font-family:'Inter', system-ui, sans-serif;
  font-size:11.5px;
  font-weight:500;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:#7a6a4a;
  margin-bottom: 6px;
}
.pricing-ed .pe-num{
  font-family:'Bodoni Moda','Bodoni 72',Didot,serif;
  font-weight:500;
  font-size:clamp(96px, 12.8vw, 188px);
  line-height:.95;
  color:#0a0908;
  letter-spacing:-.04em;
  display:inline-flex;
  align-items:flex-start;
}
.pricing-ed .pe-num .pe-pct{
  font-size:.5em;
  font-weight:400;
  margin-top:.18em;
  margin-left:.04em;
}
.pricing-ed .pe-num-foot{
  margin-top: clamp(8px, 1.2vw, 16px);
  font-family:'Inter', system-ui, sans-serif;
  font-size:12px;
  font-weight:500;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:#7a6a4a;
}
.pricing-ed .pe-hero-right{ padding-left: clamp(8px, 2vw, 24px); }
.pricing-ed .pe-edito{
  font-family:'Cormorant Garamond', Georgia, serif;
  font-weight:400;
  font-size:clamp(19px, 1.7vw, 24px);
  line-height:1.55;
  color:#1a1612;
  text-align:justify;
  hyphens:auto;
}
.pricing-ed .pe-edito em{
  font-style:italic;
  color:#3a2f1f;
}
.pricing-ed .pe-dropcap{
  float:left;
  font-family:'Bodoni Moda', serif;
  font-style:italic;
  font-weight:500;
  font-size:5.2em;
  line-height:.82;
  margin: .04em .12em -.08em 0;
  color:#0a0908;
}

/* ---- Section label ---- */
.pricing-ed .pe-sec-label{
  display:flex;
  align-items:center;
  gap: clamp(16px, 2vw, 28px);
  margin-bottom: clamp(34px, 4vw, 56px);
  color:#d4c5a8;
}
.pricing-ed .pe-num-roman{
  font-family:'Bodoni Moda', serif;
  font-style:italic;
  font-weight:400;
  font-size:18px;
  color:#b4a078;
}
.pricing-ed .pe-sec-text{
  font-family:'Inter', system-ui, sans-serif;
  font-size:13px;
  font-weight:500;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:#f5f0e8;
}
.pricing-ed .pe-rule{
  flex:1;
  height:1px;
  background:linear-gradient(90deg, rgba(180,160,120,.45) 0%, rgba(180,160,120,.18) 100%);
  transform-origin:left center;
  transform:scaleX(0);
  animation: pe-rule-draw 1.2s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay:.3s;
}
@keyframes pe-rule-draw{ to { transform: scaleX(1); } }
.pricing-ed .pe-sec-range{
  font-family:'Bodoni Moda', serif;
  font-style:italic;
  font-size:16px;
  color:#b4a078;
  letter-spacing:.02em;
  white-space:nowrap;
}

/* ---- 6 feature cards ---- */
.pricing-ed .pe-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2vw, 28px);
}
.pricing-ed .pe-card{
  position:relative;
  background:#fbf8f0;
  color:#0a0908;
  border:.5px solid rgba(180,160,120,.25);
  border-radius:4px;
  padding: clamp(24px, 2.6vw, 36px) clamp(24px, 2.6vw, 38px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  overflow:hidden;
}
.pricing-ed .pe-card::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:1px;
  background:#b4a078;
  transform-origin:left center;
  transform:scaleX(0);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.pricing-ed .pe-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,.5);
}
.pricing-ed .pe-card:hover::before{ transform: scaleX(1); }
.pricing-ed .pe-card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.pricing-ed .pe-card-n{
  font-family:'Bodoni Moda', serif;
  font-style:italic;
  font-weight:400;
  font-size:clamp(34px, 3.6vw, 46px);
  color:#b4a078;
  line-height:1;
}
.pricing-ed .pe-card-tag{
  font-family:'Inter', system-ui, sans-serif;
  font-size:11px;
  font-weight:500;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:#7a6a4a;
  margin-top:8px;
}
.pricing-ed .pe-card-sep{
  display:block;
  width:100%;
  height:1px;
  background:rgba(180,160,120,.4);
  margin: clamp(16px, 1.8vw, 22px) 0;
}
.pricing-ed .pe-card-title{
  font-family:'Bodoni Moda', serif;
  font-weight:500;
  font-size:clamp(22px, 2.2vw, 30px);
  line-height:1.1;
  color:#0a0908;
  margin:0 0 10px;
  letter-spacing:-.005em;
}
.pricing-ed .pe-card-title em{
  font-style:italic;
  font-weight:400;
  color:#3a2f1f;
}
.pricing-ed .pe-card-body{
  font-family:'Inter', system-ui, sans-serif;
  font-size:13px;
  font-weight:400;
  line-height:1.55;
  color:#3a342c;
  margin:0;
}

/* ---- Foot ---- */
.pricing-ed .pe-foot{
  margin-top: clamp(60px, 7vw, 100px);
  text-align:center;
}
.pricing-ed .pe-rule-wide{
  display:block;
  width:100%; height:1px;
  background:linear-gradient(90deg, transparent 0%, rgba(180,160,120,.4) 20%, rgba(180,160,120,.4) 80%, transparent 100%);
  transform:scaleX(0);
  animation: pe-rule-draw 1.4s cubic-bezier(.2,.7,.2,1) forwards;
}
.pricing-ed .pe-foot-note{
  margin: clamp(28px, 3vw, 44px) 0 clamp(28px, 3vw, 40px);
  font-family:'Cormorant Garamond', Georgia, serif;
  font-style:italic;
  font-size:clamp(15px, 1.3vw, 18px);
  color:#c9bfae;
  letter-spacing:.005em;
}
.pricing-ed .pe-foot-note em{ font-style:italic; }
.pricing-ed .pe-foot-note .pe-star{
  color:#b4a078;
  margin: 0 14px;
  font-style:normal;
  display:inline-block;
  transform: translateY(-1px);
}
.pricing-ed .pe-cta{
  --frame: 0;
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding: 18px 38px;
  background:#f1ece2;
  color:#0a0908;
  font-family:'Inter', system-ui, sans-serif;
  font-size:12.5px;
  font-weight:500;
  letter-spacing:.3em;
  text-transform:uppercase;
  text-decoration:none;
  border:1px solid #f1ece2;
  transition: background .3s, color .3s;
}
.pricing-ed .pe-cta::after{
  content:"";
  position:absolute;
  inset:-8px;
  border:1px solid #f1ece2;
  opacity:0;
  transform: scale(.96);
  transition: opacity .35s ease, transform .45s cubic-bezier(.2,.7,.2,1);
  pointer-events:none;
}
.pricing-ed .pe-cta:hover::after{ opacity:.55; transform:scale(1); }
.pricing-ed .pe-cta i{ font-style:normal; transition: transform .3s; }
.pricing-ed .pe-cta:hover i{ transform: translateX(4px); }

/* ---- Responsive ---- */
@media (max-width: 860px){
  .pricing-ed .pe-hero-grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pricing-ed .pe-hero-grid::before{
    top:auto; bottom:auto;
    left:15%; right:15%;
    top:50%;
    width:auto; height:1px;
    background:linear-gradient(90deg, transparent, rgba(10,9,8,.18) 20%, rgba(10,9,8,.18) 80%, transparent);
  }
  .pricing-ed .pe-grid{ grid-template-columns: 1fr; }
  .pricing-ed .pe-sec-range{ display:none; }
  .pricing-ed .pe-edito{ text-align:left; }
}

/* ============================================================
   TESTIMONIALS v2 — full-bleed photo + title overlaid on wall
   ============================================================ */
.testi-img{
  position:relative;
  width:100%;
  overflow:hidden;
  /* The bg is a slice of the photo's top wall, stretched to fill the
     padding zone — this makes the title sit on a seamless continuation
     of the photo (≈2–3 cm of breathing room above the cards). */
  background:
    url("images/avis-jartit-wall.png") top center / 100% 100% no-repeat,
    #d2d0c9;
  padding-top: clamp(26px, 5vw, 124px);
}
.testi-img > img.testi-bg{
  display:block;
  width:100%;
  height:auto;
  position:relative;
  z-index:1;
  /* nudge to bury the seam */
  margin-top:-1px;
}
.testi-img .testi-head{
  position:absolute;
  top: clamp(36px, 4.4vw, 90px);
  left:0; right:0;
  z-index:2;
  text-align:center;
  padding-inline:var(--gut);
  pointer-events:none;
}
.testi-img .testi-eyebrow{
  display:inline-flex; align-items:center; gap:18px;
  font-family:var(--sans);
  font-size:clamp(12px, 1vw, 14px);
  font-weight:500;
  letter-spacing:.46em;
  text-transform:uppercase;
  color:#3a3128;
  margin-bottom:16px;
}
.testi-img .testi-eyebrow .ln{
  width:clamp(34px, 4vw, 56px); height:1px; background:rgba(40,32,24,.55);
}
.testi-img .testi-title{
  font-family:var(--display);
  font-weight:300;
  font-size:clamp(38px, 5vw, 70px);
  line-height:1.02;
  letter-spacing:-.005em;
  color:#1f1a15;
  text-wrap:balance;
  margin:0;
}
.testi-img .testi-title em{
  font-style:italic;
  font-weight:300;
  color:#3a3128;
}
.testi-img .testi-rule{
  display:block;
  width:68px; height:1px;
  margin:22px auto 0;
  background:rgba(40,32,24,.45);
}
/* Testimonial photo reveal — fades-up the 3 cards as one block. */
.testi-img .testi-bg.reveal{
  opacity:0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
  transition-delay: .15s;
}
.testi-img .testi-bg.reveal.in{
  opacity:1;
  transform: translateY(0);
}


/* ============================================================
   FOOTER — BEM compact (Inter + Bodoni accent)
   ============================================================ */
.footer {
  background: #0a0908;
  padding: 2.75rem 2rem 1.25rem;
  border-top: 1px solid rgba(180, 160, 120, 0.25);
  font-family: 'Inter', sans-serif;
  color: #f5f0e8;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__col-title {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #b4a078;
  margin: 0 0 1rem;
  font-weight: 500;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(180, 160, 120, 0.15);
  position: relative;
}
.footer__col-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 24px; height: 1px;
  background: #b4a078;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 0.55rem; }
.footer__col a {
  color: rgba(245, 240, 232, 0.6);
  font-size: 12.5px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.footer__col a::before {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: #b4a078;
  transition: width 0.3s ease;
}
.footer__col a:hover { color: #f5f0e8; }
.footer__col a:hover::before { width: 100%; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 232, 0.6);
  font-size: 12.5px;
  margin-bottom: 0.55rem;
}
.footer__contact-item svg {
  color: #b4a078;
  width: 13px; height: 13px;
  flex-shrink: 0;
}
.footer__contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__contact-item a:hover { color: #f5f0e8; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.85rem;
}
.footer__logo .brand-mark path { fill: #b4a078; }
.footer__logo-text {
  font-size: 15px;
  letter-spacing: 6px;
  font-weight: 500;
  color: #f5f0e8;
}
.footer__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.55;
  margin: 0 0 1.1rem;
  max-width: 240px;
}
.footer__socials { display: flex; gap: 0.5rem; }
.footer__socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(180, 160, 120, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.55);
  transition: all 0.3s ease;
}
.footer__socials a::before { display: none; }
.footer__socials a:hover {
  border-color: #b4a078;
  color: #b4a078;
  transform: translateY(-1px);
}
.footer__socials svg { width: 14px; height: 14px; }
.footer__bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(180, 160, 120, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 11px;
  color: rgba(245, 240, 232, 0.4);
}
.footer__bottom em {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  color: rgba(180, 160, 120, 0.7);
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}


/* === BLINDAGE HERO — neutralise toute mise en page conditionnelle au scroll === */
.hero,
.hero.scrolled,
.hero.is-scrolling,
.hero.scrolling,
.hero.active,
.hero.in-view,
.hero[class*="scroll"],
.hero[class*="view"] {
  display: block !important;
  grid-template-columns: none !important;
  width: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}
.hero > .hero-video,
.hero > video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  width: 100% !important;
  min-width: 100% !important;
  height: 112% !important;
  object-fit: cover !important;
  object-position: center top !important;
  z-index: 0 !important;
  display: block !important;
}
.hero > .hero-scrim { z-index: 1 !important; }
.hero > .hero-inner,
.hero > .wrap { position: relative !important; z-index: 2 !important; }


/* === MOBILE FIXES (≤430px) === */
@media (max-width:430px){
  html, body{ overflow-x:hidden; max-width:100%; }
  .wrap{ padding-left:20px; padding-right:20px; box-sizing:border-box; }
  /* Hero title never clipped */
  .hero h1{ font-size:clamp(30px,8.4vw,40px); line-height:1.08; }
  .hero-sub{ font-size:15px; }
  .hero-inner{ max-width:100%; }
  /* Section titles */
  .why-us__title{ font-size:clamp(28px,8vw,34px); }
  h2, .h2{ word-break:normal; overflow-wrap:break-word; }
  /* Hero media stays centered & covering */
  .hero-video, .hero-fallback{ object-fit:cover; object-position:center center; background-position:center center; }
  /* Home keeps its OWN video on mobile (no Gestion image) */
  .hero-video{ display:block !important; }
  .hero-fallback{ display:none !important; }
  /* Logo + hero subtitle never overlap the fixed nav */
  .hero-inner{ padding-top:calc(var(--nav-h) + 28px); }
  .hero .tag{ margin-bottom:18px; }
  /* WhatsApp submit button fits the screen */
  .ct-submit{ font-size:12px; letter-spacing:.04em; padding-left:16px; padding-right:16px; white-space:normal; line-height:1.3; text-align:center; }
  .ct-submit .ti{ flex:0 0 auto; }
}


/* === HERO MOBILE (≤768px) === */
@media (max-width:768px){
  .hero{ min-height:100svh; }
  .hero-video{ display:block !important; width:100%; height:100%; object-fit:cover; object-position:center; }
  .hero-fallback{ display:none !important; }
  .hero-scrim{
    background:linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.65) 100%) !important;
  }
  .hero-inner{ padding-top:calc(var(--nav-h) + 24px); }
}