/* ═══════════════════════════════════════════════════════════
   DISTRICT CARTELS — Concierge Design System
   Palette : Marbre Blanc · Or · Noir Profond
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── VARIABLES ── */
:root {
  --w:  #F8F5F0;         /* marbre blanc */
  --w2: #F2EDE5;         /* marbre crème */
  --w3: #E8E0D2;         /* marbre sable */
  --b:  #09070 3;        /* noir profond */
  --b:  #080604;         /* noir profond */
  --b2: #0E0B07;         /* noir chaud */
  --b3: #181209;         /* noir brun */
  --g:  #C9A84C;         /* or principal */
  --g2: #B8913A;         /* or foncé */
  --g3: #DDB95A;         /* or clair */
  --gl: rgba(201,168,76,0.25);   /* or hairline */
  --gp: rgba(201,168,76,0.08);   /* or pâle */
  --td: #1A1408;         /* texte sombre */
  --tg: #4A3D2A;         /* texte gris chaud */
  --tm: rgba(26,20,8,0.4);  /* texte muted */
  --tl: #F8F5F0;         /* texte clair */
  --tml: rgba(248,245,240,0.45); /* texte muted clair */
  --fd: 'Cormorant Garamond', serif;
  --fb: 'Tajawal', sans-serif;
  --nav-h: 80px;
  --ease: cubic-bezier(0.16,1,0.3,1);
  --t: 0.4s;
}

/* ── BASE ── */
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); font-size: 16px; }
body {
  font-family: var(--fb);
  background: var(--w);
  color: var(--td);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: auto;
}
html.dc-desktop body { cursor: none; }
body.menu-open { overflow: hidden; }

/* ── CURSEUR ── */
html.dc-mobile #cursor-dot, html.dc-touch #cursor-dot,
html.dc-mobile #cursor-ring, html.dc-touch #cursor-ring { display: none !important; }
#cursor { pointer-events: none; position: fixed; z-index: 9999; }
#cursor-dot {
  position: fixed; width: 5px; height: 5px;
  background: var(--g); border-radius: 50%;
  transform: translate(-50%,-50%); transition: transform 0.08s; will-change: transform;
}
#cursor-ring {
  position: fixed; width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.5); border-radius: 50%;
  transform: translate(-50%,-50%); transition: width 0.3s var(--ease), height 0.3s var(--ease), transform 0.06s linear; will-change: transform;
}
body.cursor-hover #cursor-dot { transform: translate(-50%,-50%) scale(0); }
body.cursor-hover #cursor-ring { width: 60px; height: 60px; border-color: rgba(201,168,76,0.3); }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  justify-content: space-between; padding: 0 48px;
  transition: background var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(8,6,4,0.97);
  backdrop-filter: blur(20px);
  border-color: var(--gl);
}
.nav-brand { display: flex; flex-direction: column; gap: 1px; line-height: 1; transition: opacity var(--t); }
.nav-brand:hover { opacity: 0.65; }
.nb-d { font-family: var(--fb); font-size: 11px; font-weight: 700; letter-spacing: 0.36em; color: var(--w); text-transform: uppercase; }
.nb-c { font-family: var(--fd); font-size: 10px; font-weight: 300; letter-spacing: 0.3em; color: var(--g); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--fb); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(248,245,240,0.45); transition: color var(--t);
}
.nav-link:hover { color: var(--g); }
.nav-cta {
  font-family: var(--fb); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--gl); color: var(--g);
  padding: 8px 20px; transition: background var(--t), color var(--t);
}
.nav-cta:hover { background: var(--g); color: var(--b); }

/* ── LANG SWITCH ── */
.lang-switch { display: flex; align-items: center; gap: 2px; margin-left: 16px; }
.lang-btn {
  font-family: var(--fb); font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 6px 10px; background: transparent; border: none;
  color: rgba(248,245,240,0.3); cursor: pointer; transition: color var(--t); border-radius: 2px;
}
.lang-btn:hover { color: var(--g); }
.lang-btn.lang-active { color: var(--g); background: rgba(201,168,76,0.08); }
.lang-sep { width: 1px; height: 10px; background: var(--gl); }

/* ── MENU OVERLAY ── */
#menu-overlay {
  position: fixed; inset: 0; z-index: 99;
  background: var(--b); display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0; transition: opacity 0.5s var(--ease);
}
#menu-overlay.open { opacity: 1; pointer-events: auto; }
.menu-inner { display: flex; flex-direction: column; justify-content: space-between; height: 100%; padding: calc(var(--nav-h) + 48px) 48px 48px; width: 100%; max-width: 1200px; margin: 0 auto; }
.menu-links { display: flex; flex-direction: column; gap: 4px; }
.menu-link {
  display: flex; align-items: baseline; gap: 28px; padding: 18px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: gap var(--t) var(--ease); overflow: hidden;
}
.menu-link:hover { gap: 44px; }
.menu-link em { font-family: var(--fb); font-size: 11px; font-style: normal; font-weight: 500; letter-spacing: 2px; color: rgba(201,168,76,0.4); flex-shrink: 0; transition: color var(--t); }
.menu-link:hover em { color: var(--g); }
.menu-link span { font-family: var(--fd); font-size: clamp(36px,6vw,80px); font-weight: 300; line-height: 1; color: var(--tl); transition: letter-spacing var(--t) var(--ease); }
.menu-link:hover span { letter-spacing: 4px; }
.menu-link { transform: translateY(30px); opacity: 0; transition: transform 0.6s var(--ease), opacity 0.6s, gap var(--t) var(--ease); }
#menu-overlay.open .menu-link:nth-child(1) { transform: none; opacity:1; transition-delay:0.05s; }
#menu-overlay.open .menu-link:nth-child(2) { transform: none; opacity:1; transition-delay:0.1s; }
#menu-overlay.open .menu-link:nth-child(3) { transform: none; opacity:1; transition-delay:0.15s; }
#menu-overlay.open .menu-link:nth-child(4) { transform: none; opacity:1; transition-delay:0.2s; }
#menu-overlay.open .menu-link:nth-child(5) { transform: none; opacity:1; transition-delay:0.25s; }
#menu-overlay.open .menu-link:nth-child(6) { transform: none; opacity:1; transition-delay:0.3s; }
.menu-footer { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid rgba(201,168,76,0.12); }
.menu-social { font-family: var(--fb); font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(201,168,76,0.4); transition: color var(--t); }
.menu-social:hover { color: var(--g); }
.menu-toggle { display: flex; flex-direction: column; gap: 6px; width: 28px; padding: 4px 0; }
.menu-toggle span { display: block; height: 1px; background: var(--w); transition: transform var(--t) var(--ease), opacity var(--t), width var(--t); }
.menu-toggle span:last-child { width: 60%; margin-left: auto; }
.menu-toggle:hover span:last-child { width: 100%; }
body.menu-open .menu-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:last-child { width: 100%; transform: translateY(-7px) rotate(-45deg); }

/* ── SCROLL REVEAL ── */
.reveal-up { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── ORNAMENT DIVIDER ── */
.ornament { display: flex; align-items: center; gap: 20px; margin: 0 auto; }
.ornament-line { flex: 1; height: 1px; background: var(--gl); }
.ornament-diamond { flex-shrink: 0; }

/* ── HERO ── */
.s-hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  background-color: var(--w);
  background-image:
    radial-gradient(ellipse at 15% 75%, rgba(201,168,76,0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 20%, rgba(180,150,100,0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.025) 0%, transparent 60%);
}
#hero-canvas { position: absolute; inset: 0; z-index: 0; opacity: 0.15; }
.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; }
.hero-badge { margin-bottom: 40px; animation: badgePulse 4s ease-in-out infinite; }
@keyframes badgePulse { 0%,100%{opacity:.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.02)} }
.hero-title-d {
  font-family: var(--fd); font-size: clamp(72px,14vw,200px);
  font-weight: 300; letter-spacing: 0.06em; line-height: 0.88;
  color: var(--td); text-transform: uppercase;
}
.hero-title-c {
  font-family: var(--fd); font-size: clamp(72px,14vw,200px);
  font-weight: 300; letter-spacing: 0.06em; line-height: 0.88;
  color: transparent; -webkit-text-stroke: 1px var(--g);
  text-transform: uppercase;
}
.hero-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 28px auto 24px; width: min(400px, 90%);
}
.hd-line { flex: 1; height: 1px; background: var(--gl); }
.hd-diamond { flex-shrink: 0; }
.hero-label {
  font-family: var(--fb); font-size: 10px; font-weight: 700;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--g); margin-bottom: 20px;
}
.hero-tagline {
  font-family: var(--fd); font-size: clamp(20px,2.5vw,32px);
  font-weight: 300; font-style: italic; color: var(--tg);
  line-height: 1.4; margin-bottom: 48px;
}
.hero-tagline em { color: var(--td); font-style: italic; }
.hero-cta-wrap { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 40px; background: var(--g);
  color: var(--b); font-family: var(--fb); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; border: none; cursor: pointer;
  transition: background var(--t), gap var(--t) var(--ease);
}
.btn-gold:hover { background: var(--g2); gap: 18px; }
.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; background: transparent;
  color: var(--tg); font-family: var(--fb); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(26,20,8,0.2); cursor: pointer;
  transition: border-color var(--t), color var(--t);
}
.btn-ghost-dark:hover { border-color: var(--g); color: var(--g); }
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; background: transparent;
  color: rgba(248,245,240,0.5); font-family: var(--fb); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(248,245,240,0.15); cursor: pointer;
  transition: border-color var(--t), color var(--t);
}
.btn-ghost-light:hover { border-color: var(--g); color: var(--g); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.hs-line { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--g), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }
.hs-text { font-family: var(--fb); font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--g); writing-mode: vertical-rl; }

/* ── TICKER ── */
.ticker-strip {
  background: var(--b); border-top: 1px solid var(--gl); border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 14px 0; overflow: hidden; user-select: none;
}
.ticker-track { display: flex; width: max-content; animation: ticker 40s linear infinite; }
.ticker-strip:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  white-space: nowrap; font-family: var(--fb); font-size: 10px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(201,168,76,0.28); padding: 0 32px;
}
.ti-g { color: rgba(201,168,76,0.75); font-weight: 600; }
.ti-a { color: rgba(201,168,76,0.55); font-weight: 700; letter-spacing: 0.3em; }

/* ── SECTION GLOBALS ── */
.s-light { background-color: var(--w); background-image: radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.03) 0%, transparent 50%); }
.s-light2 { background-color: var(--w2); background-image: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.04) 0%, transparent 50%); }
.s-dark { background-color: var(--b); background-image: radial-gradient(ellipse at 15% 50%, rgba(201,168,76,0.04) 0%, transparent 50%), radial-gradient(ellipse at 85% 30%, rgba(201,168,76,0.025) 0%, transparent 50%); }
.s-dark2 { background-color: var(--b2); }
.section { padding: 140px 0; position: relative; overflow: hidden; }
.section-sm { padding: 100px 0; position: relative; overflow: hidden; }
.sec-label-gold {
  font-family: var(--fb); font-size: 10px; font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--g); margin-bottom: 20px;
}
.sec-label-dark {
  font-family: var(--fb); font-size: 10px; font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase; color: rgba(26,20,8,0.4); margin-bottom: 20px;
}
.sec-title-dark {
  font-family: var(--fd); font-size: clamp(44px,7vw,100px);
  font-weight: 300; line-height: 0.95; color: var(--td);
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.sec-title-dark em { font-style: italic; color: var(--g); }
.sec-title-light {
  font-family: var(--fd); font-size: clamp(44px,7vw,100px);
  font-weight: 300; line-height: 0.95; color: var(--tl);
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.sec-title-light em { font-style: italic; color: var(--g); }
.sec-sub-dark { font-size: 15px; font-weight: 300; color: var(--tm); line-height: 1.8; max-width: 560px; }
.sec-sub-light { font-size: 15px; font-weight: 300; color: var(--tml); line-height: 1.8; max-width: 560px; }

/* ── MANIFESTE ── */
.manifeste-quote {
  font-family: var(--fd); font-size: clamp(26px,4vw,52px);
  font-weight: 300; font-style: italic; color: var(--tl); line-height: 1.3;
  text-align: center; max-width: 860px; margin: 0 auto 80px;
}
.manifeste-quote em { color: var(--g); }
.manifeste-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--gl); max-width: 960px; margin: 0 auto; }
.m-pillar { background: var(--b2); padding: 48px 40px; display: flex; flex-direction: column; gap: 16px; transition: background var(--t); }
.m-pillar:hover { background: var(--b3); }
.m-pillar-num { font-size: 10px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--g); }
.m-pillar h3 { font-family: var(--fd); font-size: 24px; font-weight: 300; color: var(--tl); line-height: 1.2; }
.m-pillar p { font-size: 13px; color: var(--tml); line-height: 1.8; font-weight: 300; }

/* ── UNIVERS GRID ── */
.univers-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(26,20,8,0.12); margin-top: 72px;
}
.u-card {
  background: var(--w); padding: 48px 36px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden; cursor: pointer;
  border: 1px solid transparent; transition: border-color .35s, background .35s, transform .3s;
}
.u-card:hover { background: var(--w2); border-color: var(--g); transform: translateY(-3px); box-shadow: 0 20px 60px rgba(201,168,76,0.08); }
.u-card-icon { width: 52px; height: 52px; color: rgba(26,20,8,0.25); transition: color .3s; }
.u-card:hover .u-card-icon { color: var(--g); }
.u-card h3 { font-family: var(--fd); font-size: 24px; font-weight: 300; color: var(--td); line-height: 1.15; }
.u-card p { font-size: 13px; color: var(--tg); line-height: 1.75; flex: 1; font-weight: 300; }
.u-card-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(201,168,76,0.6); border: 1px solid rgba(201,168,76,0.25);
  padding: 4px 14px; width: fit-content; transition: all .3s;
}
.u-card:hover .u-card-tag { color: var(--g); border-color: var(--g); }

/* ── STATS STRIP ── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--gl); background: var(--gp); margin-top: 80px;
}
.stat-item { padding: 40px 32px; text-align: center; border-right: 1px solid var(--gl); }
.stat-item:last-child { border-right: none; }
.stat-sep { display: none; }
.stat-n { font-family: var(--fd); font-size: clamp(42px,5vw,64px); font-weight: 300; font-style: italic; color: var(--g); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tm); margin-top: 8px; }

/* ── PROCESS ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--gl); margin-top: 72px;
}
.p-step { background: var(--b2); padding: 48px 36px; display: flex; flex-direction: column; gap: 20px; transition: background var(--t); }
.p-step:hover { background: var(--b3); }
.p-step-num { font-family: var(--fd); font-size: 56px; font-weight: 300; font-style: italic; color: rgba(201,168,76,0.25); line-height: 1; }
.p-step h3 { font-family: var(--fd); font-size: 22px; font-weight: 300; color: var(--tl); line-height: 1.2; }
.p-step p { font-size: 13px; color: var(--tml); line-height: 1.8; font-weight: 300; }
.process-note { display: flex; align-items: center; gap: 32px; margin-top: 64px; }
.pn-line { flex: 1; height: 1px; background: var(--gl); }
.process-note p { font-family: var(--fd); font-size: clamp(16px,2vw,22px); font-weight: 300; font-style: italic; color: var(--tml); white-space: nowrap; }
.process-note em { color: var(--g); }

/* ── PLANS ── */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(26,20,8,0.12); margin-top: 72px; }
.plan-card { background: var(--w); padding: 56px 44px; display: flex; flex-direction: column; position: relative; border: 1px solid transparent; transition: border-color var(--t), background var(--t); }
.plan-card:hover { background: var(--w2); border-color: rgba(201,168,76,0.3); }
.plan-featured { background: var(--td); border-color: var(--g) !important; }
.plan-featured:hover { background: var(--b2); }
.plan-badge-wrap { position: absolute; top: 24px; right: 24px; }
.plan-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--b); background: var(--g); padding: 5px 12px;
}
.plan-num { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: rgba(201,168,76,0.5); margin-bottom: 16px; }
.plan-name-dark { font-family: var(--fd); font-size: clamp(32px,3.5vw,46px); font-weight: 300; font-style: italic; color: var(--td); margin-bottom: 6px; }
.plan-name-light { font-family: var(--fd); font-size: clamp(32px,3.5vw,46px); font-weight: 300; font-style: italic; color: var(--tl); margin-bottom: 6px; }
.plan-tagline-dark { font-size: 12px; color: var(--tm); letter-spacing: 0.04em; }
.plan-tagline-light { font-size: 12px; color: var(--tml); letter-spacing: 0.04em; }
.plan-divider-dark { height: 1px; background: rgba(26,20,8,0.1); margin: 28px 0; }
.plan-divider-light { height: 1px; background: var(--gl); margin: 28px 0; }
.plan-price { font-family: var(--fd); font-size: clamp(48px,5.5vw,68px); font-weight: 300; font-style: italic; color: var(--g); line-height: 1; display: flex; align-items: flex-start; gap: 3px; }
.plan-price span { font-size: 0.38em; margin-top: 8px; font-style: normal; }
.plan-price small { font-size: 0.26em; align-self: flex-end; padding-bottom: 8px; font-style: normal; letter-spacing: 0.06em; color: var(--tm); }
.plan-featured .plan-price small { color: var(--tml); }
.plan-justify { font-family: var(--fd); font-size: 14px; font-style: italic; color: var(--tm); line-height: 1.55; margin-top: 8px; }
.plan-featured .plan-justify { color: var(--tml); }
.plan-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 36px; flex: 1; }
.plan-features li { font-size: 13px; color: var(--tg); padding-left: 20px; position: relative; line-height: 1.55; }
.plan-featured .plan-features li { color: var(--tml); }
.plan-features li::before { content: '—'; position: absolute; left: 0; color: rgba(201,168,76,0.35); font-size: 11px; }
.plan-features li.pf-gold { color: var(--g) !important; font-weight: 500; }
.plan-features li.pf-gold::before { color: var(--g); }
.plan-cta-gold { display: block; text-align: center; padding: 15px; background: var(--g); color: var(--b); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; border: none; transition: background var(--t); text-decoration: none; }
.plan-cta-gold:hover { background: var(--g2); }
.plan-cta-outline-dark { display: block; text-align: center; padding: 14px; background: transparent; color: var(--tg); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid rgba(26,20,8,0.18); cursor: pointer; transition: border-color var(--t), color var(--t); }
.plan-cta-outline-dark:hover { border-color: var(--g); color: var(--g); }
.plan-cta-outline-light { display: block; text-align: center; padding: 14px; background: transparent; color: var(--tml); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid var(--gl); cursor: pointer; transition: border-color var(--t), color var(--t); }
.plan-cta-outline-light:hover { border-color: var(--g); color: var(--g); }
.plan-spots { margin-top: 12px; font-size: 11px; color: var(--tm); text-align: center; letter-spacing: 0.05em; }
.plan-spots span { color: var(--g); }
.plans-guarantee { display: flex; flex-wrap: wrap; gap: 10px 32px; align-items: center; padding: 20px 0; border-top: 1px solid rgba(201,168,76,0.18); margin-top: 4px; }
.plans-guarantee-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(201,168,76,0.55); }
.plans-guarantee-item svg { color: var(--g); flex-shrink: 0; }

/* ── FORM ── */
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-left h2 { font-family: var(--fd); font-size: clamp(40px,5.5vw,72px); font-weight: 300; line-height: 0.95; color: var(--tl); letter-spacing: -0.02em; margin-bottom: 28px; }
.form-left h2 em { font-style: italic; color: var(--g); }
.form-left p { font-size: 15px; font-weight: 300; color: var(--tml); line-height: 1.8; margin-bottom: 32px; }
.reassurance { display: flex; flex-direction: column; gap: 14px; }
.r-item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(248,245,240,0.6); }
.r-check { width: 20px; height: 20px; border: 1px solid var(--gl); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--g); }
.wa-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 32px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tml); border: 1px solid var(--gl); padding: 12px 24px; transition: color var(--t), border-color var(--t); }
.wa-link:hover { color: var(--g); border-color: var(--g); }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(201,168,76,0.55); }
.form-input {
  background: rgba(201,168,76,0.04); border: 1px solid var(--gl);
  padding: 14px 16px; font-size: 14px; color: var(--tl); outline: none;
  transition: border-color var(--t), background var(--t); font-family: var(--fb);
}
.form-input::placeholder { color: var(--tml); }
.form-input:focus { border-color: var(--g); background: rgba(201,168,76,0.08); }
.form-2inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 18px; background: var(--g); color: var(--b);
  font-family: var(--fb); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; border: none; cursor: pointer;
  transition: background var(--t); margin-top: 4px;
}
.form-submit:hover { background: var(--g2); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px; padding: 80px 40px; border: 1px solid var(--gl); }
.form-success h3 { font-family: var(--fd); font-size: 36px; font-weight: 300; color: var(--tl); }
.form-success p { font-size: 14px; color: var(--tml); }

/* ── FAQ ── */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid rgba(26,20,8,0.1); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 400; color: var(--td); font-family: var(--fb); gap: 16px; }
.faq-q:hover { color: var(--g); }
.faq-arrow { font-size: 14px; color: rgba(201,168,76,0.4); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--g); }
.faq-a { font-size: 14px; line-height: 1.8; color: var(--tg); max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; font-weight: 300; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ── MARKETPLACE PREVIEW ── */
.mkt-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(26,20,8,0.12); margin-top: 56px; }
.mkt-card { background: var(--w); overflow: hidden; border: 1px solid transparent; transition: border-color var(--t); }
.mkt-card:hover { border-color: rgba(201,168,76,0.25); }
.mkt-card-img { aspect-ratio: 4/3; background: var(--w2); display: flex; align-items: center; justify-content: center; position: relative; border-bottom: 1px solid rgba(26,20,8,0.08); }
.mkt-cat { position: absolute; top: 10px; left: 10px; font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tg); background: var(--w); padding: 4px 10px; border: 1px solid rgba(26,20,8,0.1); }
.mkt-body { padding: 20px; }
.mkt-title { font-size: 13px; font-weight: 500; color: var(--td); margin-bottom: 4px; }
.mkt-sub { font-size: 11px; color: var(--tg); margin-bottom: 12px; }
.mkt-price { font-family: var(--fd); font-size: 24px; font-weight: 300; color: var(--g); }
.mkt-seller { display: flex; align-items: center; gap: 8px; padding: 12px 20px; border-top: 1px solid rgba(26,20,8,0.07); }
.mkt-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--gp); border: 1px solid var(--gl); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--g); }
.mkt-sname { font-size: 11px; color: var(--tg); }
.mkt-check { color: #5BA85A; margin-left: 4px; }
.mkt-blur { filter: blur(5px); pointer-events: none; }
.mkt-wrap { position: relative; }
.mkt-gate { position: absolute; bottom: 0; left: 0; right: 0; height: 65%; background: linear-gradient(to bottom, transparent 0%, var(--w) 55%); display: flex; align-items: flex-end; justify-content: center; }
.mkt-gate-inner { text-align: center; padding-bottom: 0; }
.mkt-gate-icon { width: 52px; height: 52px; border: 1px solid var(--gl); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; color: var(--tg); }
.mkt-gate-count { font-family: var(--fd); font-size: 28px; font-weight: 300; color: var(--td); margin-bottom: 6px; }
.mkt-gate-sub { font-size: 13px; color: var(--tg); margin-bottom: 24px; }

/* ── FOOTER ── */
#footer { background: var(--b); border-top: 1px solid var(--gl); padding: 80px 0 40px; }
.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 80px; padding-bottom: 60px; border-bottom: 1px solid var(--gl); margin-bottom: 40px; }
.footer-brand a { display: flex; flex-direction: column; gap: 2px; line-height: 1; margin-bottom: 16px; transition: opacity var(--t); width: fit-content; }
.footer-brand a:hover { opacity: 0.65; }
.fw-d { font-family: var(--fb); font-size: 11px; font-weight: 700; letter-spacing: 0.36em; text-transform: uppercase; color: var(--tl); }
.fw-c { font-family: var(--fd); font-size: 10px; font-weight: 300; letter-spacing: 0.3em; color: var(--g); font-style: italic; }
.footer-tagline { font-size: 13px; color: var(--tml); line-height: 1.7; }
.footer-nav { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.fn-col h4 { font-family: var(--fb); font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--g); margin-bottom: 20px; }
.fn-col ul { display: flex; flex-direction: column; gap: 10px; }
.fn-col a { font-size: 13px; color: var(--tml); transition: color var(--t); }
.fn-col a:hover { color: var(--g); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: var(--tml); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid var(--gl); display: flex; align-items: center; justify-content: center; color: var(--tml); transition: color var(--t), border-color var(--t); }
.footer-socials a:hover { color: var(--g); border-color: var(--g); }

/* ── FLOATING BUTTONS ── */
.floating-btns { position: fixed; bottom: 32px; right: 32px; z-index: 200; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; transition: transform var(--t) var(--ease); }
.float-btn:hover { transform: translateY(-4px); }
.float-ig { background: rgba(8,6,4,0.96); border: 1px solid var(--gl); color: var(--g); }
.float-wa { background: #25D366; }
.float-wa svg { color: white; }

/* ── COOKIE ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; background: rgba(8,6,4,0.98); backdrop-filter: blur(20px); border-top: 1px solid var(--gl); padding: 20px 48px; transform: translateY(100%); transition: transform 0.5s var(--ease); }
.cookie-banner.visible { transform: none; }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cookie-inner p { font-size: 13px; color: var(--tml); line-height: 1.6; }
.cookie-inner a { color: var(--g); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ── CONCIERGERIE MODAL ── */
.conc-modal { position: fixed; inset: 0; z-index: 800; display: flex; align-items: flex-end; justify-content: flex-end; pointer-events: none; }
.conc-modal.open { pointer-events: auto; }
.conc-modal-overlay { position: absolute; inset: 0; background: rgba(8,6,4,0.7); backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.4s; }
.conc-modal.open .conc-modal-overlay { opacity: 1; }
.conc-modal-card { position: relative; width: min(560px,100vw); height: 100vh; background: var(--b); border-left: 1px solid var(--gl); padding: 60px 48px; overflow-y: auto; transform: translateX(100%); transition: transform 0.5s var(--ease); display: flex; flex-direction: column; }
.conc-modal.open .conc-modal-card { transform: none; }
.conc-modal-close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--tml); border: 1px solid var(--gl); transition: color var(--t), border-color var(--t); }
.conc-modal-close:hover { color: var(--g); border-color: var(--g); }
.cma-d { font-family: var(--fb); font-weight: 700; letter-spacing: 0.35em; font-size: 10px; color: var(--tl); display: block; }
.cma-c { font-family: var(--fd); font-weight: 300; font-style: italic; font-size: 10px; letter-spacing: 0.2em; color: var(--g); display: block; margin-bottom: 32px; }
.conc-modal-title { font-family: var(--fd); font-size: clamp(32px,4vw,52px); font-weight: 300; color: var(--tl); line-height: 1.1; margin-bottom: 8px; }
.conc-modal-title em { font-style: italic; color: var(--g); }
.conc-modal-sub { font-size: 13px; color: var(--tml); margin-bottom: 40px; }
.conc-form { display: flex; flex-direction: column; gap: 0; }
.conc-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.conc-field label { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(201,168,76,0.55); }
.conc-field input, .conc-field select, .conc-field textarea { background: rgba(201,168,76,0.04); border: 1px solid var(--gl); padding: 14px 16px; font-size: 14px; color: var(--tl); outline: none; transition: border-color var(--t); font-family: var(--fb); }
.conc-field input::placeholder, .conc-field textarea::placeholder { color: var(--tml); }
.conc-field input:focus, .conc-field select:focus, .conc-field textarea:focus { border-color: var(--g); }
.conc-field select option { background: var(--b2); color: var(--tl); }
.conc-field.conc-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.conc-field.conc-2col > div { display: flex; flex-direction: column; gap: 8px; }
.conc-optional { color: var(--tml); font-weight: 400; }
.conc-field-error { border-color: rgba(220,80,80,0.5) !important; }
.conc-submit { padding: 18px; background: var(--g); color: var(--b); font-family: var(--fb); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px; transition: background var(--t), gap var(--t) var(--ease); margin-top: 8px; }
.conc-submit:hover { background: var(--g2); gap: 16px; }
.conc-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.conc-confirm { display: none; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 40px 0; }
.conc-confirm-check { width: 64px; height: 64px; border: 1px solid var(--gl); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.conc-confirm h3 { font-family: var(--fd); font-size: 32px; font-weight: 300; color: var(--tl); }
.conc-confirm p { font-size: 14px; color: var(--tml); }

/* ── PANNEAU MAISON ── */
.cem-panel { position: fixed; inset: 0; z-index: 700; pointer-events: none; opacity: 0; transition: opacity 0.5s; }
.cem-panel.open { opacity: 1; pointer-events: auto; }
.cem-overlay { position: absolute; inset: 0; background: rgba(8,6,4,0.8); backdrop-filter: blur(8px); }
.cem-inner { position: absolute; right: 0; top: 0; bottom: 0; width: min(700px,100vw); background: var(--b); border-left: 1px solid var(--gl); overflow-y: auto; transform: translateX(100%); transition: transform 0.55s var(--ease); }
.cem-panel.open .cem-inner { transform: none; }
.cem-close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--tml); border: 1px solid var(--gl); transition: all var(--t); }
.cem-close:hover { color: var(--g); border-color: var(--g); }
.cem-content { padding: 60px 48px; }
.cem-label { font-size: 10px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--g); margin-bottom: 16px; }
.cem-title { font-family: var(--fd); font-size: clamp(32px,4vw,52px); font-weight: 300; color: var(--tl); line-height: 1.1; margin-bottom: 24px; }
.cem-title em { font-style: italic; color: var(--g); }
.cem-price { font-family: var(--fd); font-size: clamp(48px,5vw,64px); font-weight: 300; font-style: italic; color: var(--g); margin-bottom: 8px; }
.cem-price span { font-size: 0.4em; margin-left: 2px; font-style: normal; }
.cem-price em { font-size: 0.28em; font-style: normal; color: var(--tml); }
.cem-price-alt { font-size: 14px; color: var(--tml); margin-bottom: 32px; }
.cem-cta { display: inline-flex; align-items: center; gap: 12px; padding: 14px 32px; background: var(--g); color: var(--b); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; transition: background var(--t); margin-bottom: 48px; text-decoration: none; }
.cem-cta:hover { background: var(--g2); }
.cem-block { margin-bottom: 32px; }
.cem-block-title { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(201,168,76,0.55); margin-bottom: 16px; }
.cem-list { display: flex; flex-direction: column; gap: 10px; }
.cem-list li { font-size: 13px; color: var(--tml); padding-left: 20px; position: relative; line-height: 1.6; font-weight: 300; }
.cem-list li::before { content: '—'; position: absolute; left: 0; color: rgba(201,168,76,0.35); font-size: 11px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .mkt-grid { grid-template-columns: repeat(2,1fr); }
  .mkt-blur { display: none; }
}
@media (max-width: 900px) {
  .manifeste-pillars, .form-2col { grid-template-columns: 1fr; }
  .univers-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  #nav { padding: 0 24px; }
  .section { padding: 80px 0; }
  .process-grid, .plans-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .conc-modal-card { width: 100%; border-left: none; }
  .cem-inner { width: 100%; border-left: none; }
}
@media (max-width: 640px) {
  .univers-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-note { flex-direction: column; gap: 16px; }
  .process-note p { white-space: normal; text-align: center; }
  .pn-line { width: 60px; flex: unset; }
  .mkt-grid { grid-template-columns: 1fr; }
  .hero-title-d, .hero-title-c { font-size: clamp(58px,16vw,100px); }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gl); }
  .form-2inputs { grid-template-columns: 1fr; }
  .lang-switch { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   RTL — ARABIC SUPPORT  (dir="rtl" appliqué sur <html>)
   ═══════════════════════════════════════════════════════════ */

/* Reset letter-spacing (inutile en arabe) */
[dir="rtl"] .hero-label,[dir="rtl"] .sec-label-gold,[dir="rtl"] .sec-label-dark,
[dir="rtl"] .m-pillar-num,[dir="rtl"] .plan-num,[dir="rtl"] .stat-label,
[dir="rtl"] .u-card-tag,[dir="rtl"] .nav-link,[dir="rtl"] .nav-cta,
[dir="rtl"] .lang-btn,[dir="rtl"] .btn-gold,[dir="rtl"] .btn-ghost-dark,
[dir="rtl"] .btn-ghost-light,[dir="rtl"] .ticker-item,[dir="rtl"] .form-label,
[dir="rtl"] .form-submit,[dir="rtl"] .conc-submit,[dir="rtl"] .plan-cta-gold,
[dir="rtl"] .plan-cta-outline-dark,[dir="rtl"] .hs-text,[dir="rtl"] .fw-d,
[dir="rtl"] .nb-d,[dir="rtl"] .nb-c { letter-spacing: 0; }

/* Nav */
[dir="rtl"] #nav { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .nav-brand { align-items: flex-end; }
[dir="rtl"] .lang-switch { flex-direction: row-reverse; }
[dir="rtl"] .menu-toggle { margin-right: 0; margin-left: 0; }

/* Hero */
[dir="rtl"] .hero-inner { direction: rtl; }
[dir="rtl"] .hero-title-d,[dir="rtl"] .hero-title-c { letter-spacing: 0.02em; }
[dir="rtl"] .hero-cta-wrap { flex-direction: row-reverse; }

/* Manifeste */
[dir="rtl"] .manifeste-quote { direction: rtl; }
[dir="rtl"] .manifeste-pillars { direction: rtl; }
[dir="rtl"] .m-pillar { text-align: right; }

/* Univers */
[dir="rtl"] .univers-grid { direction: rtl; }
[dir="rtl"] .u-card { text-align: right; align-items: flex-end; }

/* Stats */
[dir="rtl"] .stats-strip { direction: rtl; }

/* Process */
[dir="rtl"] .process-grid { direction: rtl; }
[dir="rtl"] .p-step { text-align: right; }
[dir="rtl"] .process-note { direction: rtl; }

/* Plans */
[dir="rtl"] .plans-grid { direction: rtl; }
[dir="rtl"] .plan-card { text-align: right; }
[dir="rtl"] .plan-features li { padding-left: 0; padding-right: 20px; }
[dir="rtl"] .plan-features li::before { left: auto; right: 0; }
[dir="rtl"] .plan-badge-wrap { right: auto; left: 24px; }
[dir="rtl"] .plan-price { flex-direction: row-reverse; }
[dir="rtl"] .plans-guarantee { direction: rtl; }
[dir="rtl"] .plans-guarantee-item { flex-direction: row-reverse; }

/* Formulaire */
[dir="rtl"] .form-2col { direction: rtl; }
[dir="rtl"] .form-left { text-align: right; direction: rtl; }
[dir="rtl"] .reassurance { direction: rtl; }
[dir="rtl"] .r-item { flex-direction: row-reverse; }
[dir="rtl"] .form-group { text-align: right; }
[dir="rtl"] .form-2inputs { direction: rtl; }
[dir="rtl"] .form-input { text-align: right; direction: rtl; }

/* FAQ */
[dir="rtl"] .faq-list { direction: rtl; }
[dir="rtl"] .faq-q { flex-direction: row-reverse; }
[dir="rtl"] .faq-a { text-align: right; direction: rtl; }

/* Marketplace */
[dir="rtl"] .mkt-grid { direction: rtl; }
[dir="rtl"] .mkt-gate-inner { direction: rtl; }

/* Footer */
[dir="rtl"] #footer { direction: rtl; }
[dir="rtl"] .footer-top { direction: rtl; }
[dir="rtl"] .footer-nav { direction: rtl; }
[dir="rtl"] .fn-col { text-align: right; }
[dir="rtl"] .footer-brand a { align-items: flex-end; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }

/* Menu overlay */
[dir="rtl"] .menu-link { flex-direction: row-reverse; }
[dir="rtl"] .menu-footer { flex-direction: row-reverse; }

/* Modal sourcing — depuis la gauche en RTL */
[dir="rtl"] .conc-modal { justify-content: flex-start; }
[dir="rtl"] .conc-modal-card {
  border-left: none;
  border-right: 1px solid rgba(201,168,76,0.25);
  transform: translateX(-100%);
  direction: rtl; text-align: right;
}
[dir="rtl"] .conc-modal.open .conc-modal-card { transform: none; }
[dir="rtl"] .conc-modal-close { right: auto; left: 24px; }
[dir="rtl"] .conc-field { text-align: right; }
[dir="rtl"] .conc-field input,
[dir="rtl"] .conc-field select,
[dir="rtl"] .conc-field textarea { text-align: right; direction: rtl; }
[dir="rtl"] .conc-field.conc-2col { direction: rtl; }
[dir="rtl"] .conc-confirm { direction: rtl; }

/* Panneau Maison — depuis la gauche en RTL */
[dir="rtl"] .cem-inner {
  right: auto; left: 0;
  border-left: none;
  border-right: 1px solid rgba(201,168,76,0.25);
  transform: translateX(-100%);
  direction: rtl;
}
[dir="rtl"] .cem-panel.open .cem-inner { transform: none; }
[dir="rtl"] .cem-close { right: auto; left: 24px; }
[dir="rtl"] .cem-content { text-align: right; }
[dir="rtl"] .cem-list li { padding-left: 0; padding-right: 20px; text-align: right; }
[dir="rtl"] .cem-list li::before { left: auto; right: 0; }

/* Ticker inversé */
[dir="rtl"] .ticker-track { animation-direction: reverse; }

/* Scroll hint */
[dir="rtl"] .hero-scroll { left: 50%; }
