/* ============ DAR SALAM LES RÉSIDENCES ============ */
:root {
  --navy: #05254A;        /* bleu marine profond */
  --navy-deep: #00183C;   /* bleu presque noir */
  --navy-soft: #102F51;   /* bleu nuit */
  --ivory: #FEFCF4;       /* ivoire chaud */
  --ivory-soft: #F4F0E6;  /* beige très clair */
  --gold: #C5A46D;        /* or champagne */
  --gold-bright: #E1D0AD; /* champagne clair */
  --pearl: #DDDDDD;       /* gris perle */
  --grey-ivory: #F7F6F2;  /* gris ivoire */
  --slate: #506074;       /* gris bleuté */
  --ink: #05254A;
  --u-gold: #D9A62E;
  --u-blue: #4A7FC1;
  --u-green: #7A9B57;
  --u-red: #C0504D;
  --u-orange: #D9853B;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 24, 60, .18);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
body { font-family: var(--sans); color: var(--ink); background: var(--ivory); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }
.gold { color: var(--pearl); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--navy); line-height: 1.15; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 18px; }

.section-kicker {
  font-size: .8rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 14px; font-weight: 500;
}
.section-kicker.light { color: var(--pearl); }


/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-family: var(--sans); font-size: .95rem; letter-spacing: .06em;
  font-weight: 500; cursor: pointer; border: none; transition: all .3s ease;
}
.btn-gold { background: var(--ivory); color: var(--navy); border: 1.5px solid var(--pearl); }
.btn-gold:hover { background: var(--navy); color: var(--ivory); border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(5, 37, 74, .28); }
.btn-ghost { background: transparent; color: var(--ivory); border: 1px solid rgba(254, 252, 244, .45); }
.btn-ghost:hover { border-color: var(--ivory); color: var(--ivory); background: rgba(254, 252, 244, .08); }
.btn-ghost-dark { background: transparent; color: var(--navy); border: 1px solid rgba(5, 37, 74, .3); }
.btn-ghost-dark:hover { border-color: var(--navy); background: var(--navy); color: var(--ivory); }
.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  padding: 12px 32px;
  background: rgba(254, 252, 244, .96);
  border-bottom: 1px solid var(--pearl);
}
.brand { display: flex; align-items: center; gap: 12px; justify-self: start; }
.brand-mark {
  font-family: var(--serif); font-weight: 600; font-size: 1.25rem;
  color: var(--navy); border: 2px solid var(--navy);
  width: 44px; height: 44px; display: grid; place-items: center;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--serif); font-size: 1.1rem; letter-spacing: .12em; color: var(--navy); }
.brand-text em { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; font-style: normal; color: var(--slate); }
.site-nav { display: flex; gap: 28px; align-items: center; font-size: .92rem; letter-spacing: .04em; justify-self: center; }
.site-nav a { color: var(--navy); position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--navy); transition: width .3s ease;
}
.site-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--navy); color: var(--ivory) !important; padding: 9px 22px; border-radius: 999px; transition: background .3s; }
.nav-cta:hover { background: var(--navy-soft); color: var(--ivory) !important; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--navy); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  color: var(--ivory); overflow: hidden; padding: 120px 24px 80px;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-bg-overlay { opacity: .82; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(221, 221, 221, .22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 110%, rgba(74, 127, 193, .18), transparent 60%),
    linear-gradient(175deg, var(--navy-deep) 0%, var(--navy) 55%, #1A3A5E 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: .07;
  background-image:
    linear-gradient(rgba(251,247,238,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,247,238,.6) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge { width: 92px; margin: 0 auto 26px; filter: drop-shadow(0 8px 24px rgba(0,0,0,.4)); }
.hero-kicker {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem;
  color: var(--pearl); margin-bottom: 10px;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); color: var(--ivory); margin-bottom: 10px; }
.hero-sub {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-style: italic;
  letter-spacing: .01em; opacity: .95; margin-bottom: 38px; color: var(--pearl);
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  position: relative; z-index: 2; display: flex; gap: 0; margin-top: 70px;
  background: rgba(254, 252, 244, .06); border: 1px solid rgba(254, 252, 244, .14);
  border-radius: var(--radius); overflow: hidden;
}
.hero-stats > div { padding: 22px 38px; display: flex; flex-direction: column; align-items: center; }
.hero-stats > div + div { border-left: 1px solid rgba(254, 252, 244, .12); }
.hero-stats strong { font-family: var(--serif); font-size: clamp(1.1rem, 1.5vw, 1.55rem); color: var(--ivory); line-height: 1.2; text-align: center; margin-bottom: 4px; }
.hero-stats span { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; opacity: .75; }
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(251,247,238,.4); border-radius: 14px; z-index: 2;
}
.scroll-hint span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--pearl); border-radius: 2px; animation: scrollAnim 1.8s infinite;
}
@keyframes scrollAnim { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Intro / Le Groupe ---------- */
.intro { padding: 110px 0; text-align: center; }
.intro-text { font-size: 1.15rem; color: var(--ink); max-width: 720px; margin: 0 auto 26px; }
.intro-signature { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--navy); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.pillar {
  background: #fff; border: 1px solid var(--pearl); border-radius: var(--radius);
  padding: 34px 26px; transition: transform .35s ease, box-shadow .35s ease;
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pillar-num {
  display: block; font-family: var(--serif); font-size: 2.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px; line-height: 1;
}
.pillar h3 { font-size: 1.25rem; margin-bottom: 8px; }
.pillar p { font-size: .93rem; opacity: .75; }

/* ---------- Projet à la une ---------- */
.featured { padding: 40px 0 90px; }
.featured-banner {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 0; overflow: hidden;
  border-radius: calc(var(--radius) + 6px); box-shadow: var(--shadow);
  background:
    radial-gradient(ellipse 70% 80% at 90% 10%, rgba(221, 221, 221, .18), transparent 60%),
    linear-gradient(150deg, var(--navy-deep), var(--navy) 70%, var(--navy-soft));
  color: var(--ivory);
}
.featured-left { padding: 56px 54px; }
.featured-tag {
  display: inline-block; padding: 7px 18px; border-radius: 999px; font-size: .75rem;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  background: var(--pearl); color: var(--navy);
  margin-bottom: 22px;
}
.featured-left h2 { color: var(--ivory); font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 8px; }
.featured-address { font-size: .95rem; letter-spacing: .05em; opacity: .75; margin-bottom: 18px; }
.featured-desc { opacity: .9; max-width: 560px; margin-bottom: 30px; }
.featured-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.featured-facts {
  display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid rgba(254, 252, 244, .14);
}
.featured-facts div {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 26px 12px; text-align: center;
}
.featured-facts div:nth-child(odd) { border-right: 1px solid rgba(254, 252, 244, .14); }
.featured-facts div:nth-child(-n+2) { border-bottom: 1px solid rgba(254, 252, 244, .14); }
.featured-facts strong { font-family: var(--serif); font-size: 1.9rem; color: var(--ivory); }
.featured-facts span { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; opacity: .7; }

/* ---------- Prestations ---------- */
.prestations { padding: 100px 0; background: var(--ivory-soft); text-align: center; }
.prestations-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px; margin-top: 50px; text-align: center;
}
.presta {
  background: var(--ivory); border: 1px solid var(--pearl);
  border-radius: var(--radius); padding: 36px 24px; transition: transform .35s ease, box-shadow .35s ease;
}
.presta:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.presta-ico {
  width: 72px; height: 72px; margin: 0 auto 20px; display: grid; place-items: center;
  color: var(--navy); border: 1.5px solid var(--pearl);
  border-radius: 50%; background: var(--grey-ivory);
  transition: background .3s ease, transform .3s ease;
}
.presta:hover .presta-ico { background: var(--pearl); transform: scale(1.06); }
.presta-ico svg { width: 40px; height: 40px; }
.presta h3 { font-size: 1.2rem; margin-bottom: 6px; }
.presta p { font-size: .92rem; opacity: .75; }

/* ---------- Explorer ---------- */
.explorer { padding: 110px 0; text-align: center; }
.explorer-help { max-width: 560px; margin: 0 auto; opacity: .8; }
.explorer-layout {
  display: grid; grid-template-columns: 240px 1fr; gap: 34px;
  margin-top: 54px; text-align: left; align-items: start;
}

/* Building schematic */
.building { position: sticky; top: 100px; }
.building-roof, .building-ground, .building-basement {
  text-align: center; font-size: .72rem; letter-spacing: .22em; padding: 10px 6px;
  color: var(--navy); border: 1.5px solid rgba(5, 37, 74, .25);
}
.building-roof {
  border-radius: 14px 14px 0 0; background: var(--navy);
  color: var(--ivory); font-weight: 600; border-color: var(--navy);
}
.building-ground { background: var(--ivory-soft); }
.building-basement { border-style: dashed; border-top: none; border-radius: 0 0 14px 14px; opacity: .65; font-size: .66rem; }
.building-floors { display: flex; flex-direction: column-reverse; }
.bfloor {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px; border: 1.5px solid rgba(5, 37, 74, .25); border-top: none;
  background: var(--ivory); cursor: pointer; transition: all .25s ease;
  font-size: .92rem; color: var(--navy);
}
.building-floors .bfloor:last-child { border-top: 1.5px solid rgba(5, 37, 74, .25); }
.bfloor .bf-units { font-size: .7rem; opacity: .55; letter-spacing: .05em; }
.bfloor:hover { background: var(--ivory-soft); padding-left: 22px; }
.bfloor.active {
  background: var(--navy); color: var(--ivory); border-color: var(--navy);
}
.bfloor.active .bf-units { opacity: .9; color: var(--pearl); }

/* Plan panel */
.plan-panel {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 28px; border: 1px solid var(--pearl);
}
.plan-head { display: flex; align-items: center; justify-content: center; gap: 22px; margin-bottom: 18px; }
.plan-head h3 { font-size: 1.7rem; min-width: 170px; text-align: center; }
.floor-arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(5, 37, 74, .25);
  background: none; color: var(--navy); font-size: .9rem; cursor: pointer; transition: all .25s;
}
.floor-arrow:hover { background: var(--navy); color: var(--ivory); }
.plan-img-wrap { position: relative; border-radius: 12px; overflow: hidden; background: #FCFAF4; }
#planImg {
  width: 100%; max-height: 640px; object-fit: contain;
  transition: opacity .3s ease, transform .72s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
#planImg.fading { opacity: 0; }
.plan-back {
  position: absolute; top: 14px; left: 14px; padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid var(--navy); background: rgba(254, 252, 244, .92); color: var(--navy);
  font-family: var(--sans); font-size: .85rem; font-weight: 500; cursor: pointer;
  transition: all .25s ease;
}
.plan-back:hover { background: var(--navy); color: var(--ivory); }
.plan-3d-tag {
  position: absolute; bottom: 14px; right: 14px; padding: 8px 16px; border-radius: 999px;
  background: var(--pearl); color: var(--navy);
  font-size: .78rem; font-weight: 600; letter-spacing: .08em;
}

.unit-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 6px; }
.unit-chip {
  display: flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer; font-family: var(--sans);
  font-size: .9rem; font-weight: 500; background: var(--ivory-soft); color: var(--ink);
  transition: all .25s ease;
}
.unit-chip .dot { width: 11px; height: 11px; border-radius: 50%; }
.unit-chip:hover { transform: translateY(-2px); }
.unit-chip.active { border-color: var(--navy); background: var(--navy); color: var(--ivory); }

.unit-detail {
  margin-top: 14px; border-radius: 12px; background: var(--ivory-soft);
  padding: 22px; min-height: 96px; display: flex; align-items: center;
}
.unit-detail-hint { opacity: .55; font-size: .95rem; width: 100%; text-align: center; }
.unit-detail-card { display: flex; align-items: center; gap: 22px; width: 100%; flex-wrap: wrap; }
.unit-num {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 600; line-height: 1;
  padding: 12px 20px; border-radius: 12px; color: #fff;
}
.unit-meta h4 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; color: var(--navy); letter-spacing: .04em; }
.unit-meta p { font-size: .88rem; opacity: .75; }
.unit-surfaces { display: flex; gap: 20px; margin-left: auto; }
.unit-surfaces div { text-align: center; }
.unit-surfaces strong { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); display: block; }
.unit-surfaces span { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; opacity: .6; }
.unit-walk { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.unit-walk .btn { font-size: .85rem; padding: 11px 20px; }

/* ---------- Location ---------- */
.location { padding: 110px 0; background: var(--ivory-soft); }
.location-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.location-list { list-style: none; margin: 26px 0 34px; }
.location-list li { display: flex; align-items: center; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--pearl); }
.loc-ico { font-size: 1.4rem; }
.location-map { display: flex; justify-content: center; }
.map-frame {
  width: 100%; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 6px solid #fff; background: #E8E4DA;
}
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Projets à venir ---------- */
.upcoming { padding: 100px 0; text-align: center; }
.upcoming-sub { max-width: 520px; margin: 0 auto; opacity: .8; }
.upcoming-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.upcoming-card {
  border-radius: var(--radius); padding: 36px 28px; text-align: left;
  background: var(--ivory-soft); border: 1px solid var(--pearl);
  transition: transform .35s ease, box-shadow .35s ease;
}
.upcoming-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.upcoming-visual {
  height: 130px; border-radius: 12px; margin-bottom: 22px; display: grid; place-items: center;
  background:
    radial-gradient(ellipse 80% 90% at 70% 20%, rgba(221, 221, 221, .25), transparent 60%),
    linear-gradient(150deg, var(--navy-deep), var(--navy-soft));
}
.upcoming-visual span {
  font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--pearl);
  border: 2px solid var(--pearl); padding: 8px 16px; opacity: .85;
}
.upcoming-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.upcoming-card p { font-size: .93rem; opacity: .75; margin-bottom: 16px; }
.upcoming-tag {
  display: inline-block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; color: var(--slate); border: 1.5px solid var(--pearl);
  border-radius: 999px; padding: 6px 14px;
}
.upcoming-card.notify {
  background: linear-gradient(150deg, var(--navy-deep), var(--navy)); color: var(--ivory);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 4px;
}
.upcoming-card.notify h3 { color: var(--ivory); }
.upcoming-card.notify p { opacity: .8; }

/* ---------- Contact ---------- */
.contact {
  padding: 110px 0; color: var(--ivory);
  background:
    radial-gradient(ellipse 70% 60% at 15% 0%, rgba(221, 221, 221, .16), transparent 55%),
    linear-gradient(160deg, var(--navy-deep), var(--navy));
}
.contact h2 { color: var(--ivory); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-info > p { opacity: .85; max-width: 420px; }
.contact-phones { display: flex; flex-direction: column; gap: 14px; margin: 30px 0; }
.phone-card {
  display: flex; align-items: center; gap: 14px; padding: 16px 24px;
  border: 1px solid rgba(254, 252, 244, .2); border-radius: 14px;
  font-size: 1.25rem; font-weight: 500; letter-spacing: .08em;
  background: rgba(254, 252, 244, .05); transition: all .3s; max-width: 340px;
}
.phone-card:hover { border-color: var(--pearl); background: rgba(254, 252, 244, .12); transform: translateX(6px); }
.contact-badge { width: 100px; margin-top: 10px; }
.contact-form {
  background: var(--ivory); border-radius: var(--radius); padding: 38px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35); color: var(--ink);
}
.contact-form h3 { font-size: 1.6rem; margin-bottom: 22px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 14px 18px; margin-bottom: 14px; border-radius: 10px;
  border: 1.5px solid var(--pearl); background: #fff;
  font-family: var(--sans); font-size: .95rem; color: var(--ink);
  transition: border-color .25s; resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--navy);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin-top: 12px; font-size: .85rem; text-align: center; color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: var(--ivory); padding: 46px 0; text-align: center; font-size: .9rem; }
.footer-layout { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-brand .brand-mark { color: var(--ivory); border-color: var(--pearl); }
.footer-brand .brand-text strong { color: var(--ivory); }
.site-footer p { opacity: .7; }
.footer-copy { font-size: .78rem; opacity: .45 !important; }

.btn-visit { margin-left: auto; padding: 11px 22px; font-size: .88rem; }
.unit-detail-card { row-gap: 12px; }

/* ---------- Expérience immersive plein écran ---------- */
.cinema-kicker {
  font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--ivory);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
}
.btn-enter { box-shadow: 0 10px 34px rgba(5, 37, 74, .35); }
.experience {
  position: relative; width: 100%; height: clamp(520px, 92vh, 880px);
  margin: 54px 0 70px; overflow: hidden; background: var(--navy-deep);
}
.experience video, .experience #expImage {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.exp-vignette {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(ellipse 120% 90% at 50% 40%, transparent 55%, rgba(0, 24, 60, .55));
}
.exp-shutter {
  position: absolute; top: 0; bottom: 0; width: 51%; z-index: 6;
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
  transition: transform .4s cubic-bezier(.6, 0, .3, 1);
}
.exp-shutter-l { left: 0; transform: translateX(-101%); }
.exp-shutter-r { right: 0; background: linear-gradient(270deg, var(--navy-deep), var(--navy)); transform: translateX(101%); }
.experience.shut .exp-shutter-l { transform: translateX(0); }
.experience.shut .exp-shutter-r { transform: translateX(0); }

.exp-panel { position: absolute; z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.exp-center { inset: 0; justify-content: center; background: rgba(0, 24, 60, .35); }
.exp-bottom {
  left: 0; right: 0; bottom: 0; padding: 40px 24px 44px;
  background: linear-gradient(180deg, transparent, rgba(0, 24, 60, .88) 55%);
}
.exp-title {
  font-family: var(--serif); font-size: 1.5rem; color: var(--ivory);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .5); text-align: center;
}
.exp-floor-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 720px; }
.exp-floor-btn {
  padding: 11px 20px; border-radius: 999px; border: 1.5px solid rgba(254, 252, 244, .4);
  background: rgba(254, 252, 244, .08); color: var(--ivory); font-family: var(--sans);
  font-size: .92rem; font-weight: 500; cursor: pointer; transition: all .25s;
}
.exp-floor-btn:hover { background: var(--ivory); border-color: var(--ivory); color: var(--navy); transform: translateY(-2px); }
.exp-door-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.exp-door-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 12px 22px; border-radius: 12px; cursor: pointer;
  border: 1.5px solid rgba(221, 221, 221, .55); background: rgba(0, 24, 60, .55);
  color: var(--ivory); font-family: var(--sans); transition: all .25s;
}
.exp-door-btn strong { font-family: var(--serif); font-size: 1.4rem; color: var(--ivory); }
.exp-door-btn span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
.exp-door-btn:hover { background: var(--ivory); color: var(--navy); transform: translateY(-3px); }
.exp-door-btn:hover strong, .exp-door-btn:hover span { color: var(--navy); }
.exp-link {
  background: none; border: none; color: rgba(254, 252, 244, .75); cursor: pointer;
  font-family: var(--sans); font-size: .85rem; letter-spacing: .05em; margin-top: 4px;
}
.exp-link:hover { color: var(--pearl); }
.exp-skip {
  position: absolute; top: 20px; right: 22px; z-index: 5; background: rgba(0, 24, 60, .5);
  border: 1px solid rgba(254, 252, 244, .35); color: var(--ivory); border-radius: 999px;
  padding: 8px 18px; font-family: var(--sans); font-size: .82rem; cursor: pointer; transition: all .25s;
}
.exp-skip:hover { background: var(--ivory); color: var(--navy); border-color: var(--ivory); }
.exp-crumb {
  position: absolute; top: 20px; left: 22px; z-index: 5; display: flex; gap: 6px;
  align-items: center; padding: 8px 16px; border-radius: 999px;
  background: rgba(0, 24, 60, .55); color: var(--ivory); font-size: .82rem; letter-spacing: .04em;
}
.exp-crumb button { background: none; border: none; color: inherit; cursor: pointer; font: inherit; }
.exp-crumb button:hover { color: var(--pearl); }
.exp-crumb .sep { opacity: .45; }
.exp-pause {
  position: absolute; bottom: 22px; left: 22px; z-index: 5; width: 52px; height: 52px;
  border-radius: 50%; border: 1.5px solid rgba(254, 252, 244, .5);
  background: rgba(0, 24, 60, .55); color: var(--ivory); font-size: 1.15rem;
  cursor: pointer; transition: all .25s; display: grid; place-items: center;
}
.exp-pause:hover { background: var(--ivory); color: var(--navy); border-color: var(--ivory); }
.exp-apt-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.plans-heading {
  text-align: center; font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 8px;
}

/* ---------- Visite immersive ---------- */
.visit-overlay {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center;
  justify-content: center; padding: 24px;
  background: rgba(0, 24, 60, .92);
}
.visit-panel {
  position: relative; width: min(960px, 100%); max-height: 92vh; overflow: auto;
  background: linear-gradient(165deg, var(--navy-deep), var(--navy));
  border: 1px solid rgba(221, 221, 221, .3); border-radius: calc(var(--radius) + 4px);
  padding: 40px 44px; color: var(--ivory); box-shadow: 0 40px 120px rgba(0, 0, 0, .5);
}
.visit-panel h3 { font-size: 2rem; color: var(--ivory); margin-bottom: 4px; }
.visit-meta { opacity: .75; font-size: .95rem; margin-bottom: 24px; }
.visit-close {
  position: absolute; top: 18px; right: 18px; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid rgba(254, 252, 244, .3); background: none;
  color: var(--ivory); font-size: 1.1rem; cursor: pointer; transition: all .25s;
}
.visit-close:hover { background: var(--ivory); color: var(--navy); border-color: var(--ivory); }
.visit-media { border-radius: 14px; overflow: hidden; background: #FCFAF4; }
.visit-media video { display: block; width: 100%; max-height: 62vh; background: #000; }
.visit-fallback { position: relative; }
.visit-fallback img { width: 100%; max-height: 56vh; object-fit: contain; }
.visit-soon {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 18px; background: var(--navy-deep); text-align: center;
}
.visit-soon-badge {
  display: inline-block; padding: 7px 16px; border-radius: 999px; font-size: .75rem;
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  background: var(--pearl); color: var(--navy);
}
.visit-soon p { font-size: .88rem; opacity: .75; }

/* ---------- Candidature ---------- */
.apply-panel h3 { display: flex; gap: 8px; flex-wrap: wrap; }
.apply-form { margin-top: 20px; }
.apply-cv-label { display: block; font-size: .85rem; margin-bottom: 6px; opacity: .75; }
.apply-form input[type="file"] {
  padding: 10px; background: var(--ivory-soft); border-style: dashed; cursor: pointer;
}

/* Mode capture (tests visuels) */
body.capture .hero { min-height: 0; padding: 140px 24px 80px; }

/* ---------- Langue / RTL ---------- */
.lang-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--navy); background: none; color: var(--navy);
  font-family: var(--sans); font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: all .25s;
}
.lang-toggle:hover { background: var(--navy); color: var(--ivory); }
html[lang="ar"] body { font-family: 'Tajawal', var(--sans); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3,
html[lang="ar"] .brand-text strong, html[lang="ar"] .unit-num,
html[lang="ar"] .hero-stats strong, html[lang="ar"] .featured-facts strong,
html[lang="ar"] .exp-title, html[lang="ar"] .intro-signature { font-family: 'Amiri', var(--serif); }
html[lang="ar"] .hero-kicker, html[lang="ar"] .cinema-kicker { font-family: 'Amiri', var(--serif); }
html[lang="ar"] .section-kicker { letter-spacing: .12em; }
html[dir="rtl"] .site-nav a:not(.nav-cta)::after { left: auto; right: 0; }

html[dir="rtl"] .location-list li, html[dir="rtl"] .phone-card { direction: rtl; }

/* ---------- Carrières ---------- */
.hero-careers { min-height: 62vh; }
.careers { padding: 90px 0 110px; text-align: center; }
.jobs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px; margin-top: 50px; text-align: left;
}
html[dir="rtl"] .jobs-grid { text-align: right; }
.job-card {
  background: #fff; border: 1px solid var(--pearl); border-radius: var(--radius);
  padding: 34px 28px; display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start; transition: transform .35s ease, box-shadow .35s ease;
}
.job-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.job-tag {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  color: var(--slate); border: 1.5px solid var(--pearl); border-radius: 999px; padding: 5px 13px;
}
.job-card h3 { font-size: 1.45rem; }
.job-card p { font-size: .93rem; opacity: .75; flex: 1; }
.job-card.job-open {
  background: linear-gradient(150deg, var(--navy-deep), var(--navy)); color: var(--ivory);
}
.job-card.job-open h3 { color: var(--ivory); }
.nav-active { color: var(--navy) !important; border-bottom: 1.5px solid var(--navy); padding-bottom: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .explorer-layout { grid-template-columns: 1fr; }
  .building { position: static; display: grid; grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .location-layout, .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .hero-stats > div { padding: 16px 24px; }
  .pillars, .upcoming-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .pillars { margin-top: 40px; }
  .featured-banner { grid-template-columns: 1fr; }
  .featured-left { padding: 40px 30px; }
  .featured-facts { border-left: none; border-top: 1px solid rgba(254, 252, 244, .14); }
}
@media (max-width: 720px) {
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--ivory); padding: 24px;
    border-bottom: 1px solid var(--pearl); gap: 18px;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .unit-surfaces { margin-left: 0; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.6rem); }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; width: 100%; margin-top: 46px; }
  .hero-stats > div { padding: 14px 8px; }
  .hero-stats > div + div { border-left: none; }
  .hero-stats > div:nth-child(even) { border-left: 1px solid rgba(254, 252, 244, .12); }
  .hero-stats > div:nth-child(n+3) { border-top: 1px solid rgba(254, 252, 244, .12); }
  .hero-stats span { font-size: .66rem; }
  .plan-head h3 { min-width: 0; font-size: 1.3rem; }
  .plan-panel { padding: 16px; }
  .contact-form { padding: 24px; }
}


/* ---------- Badge 25 ans dans le header ---------- */
.header-badge { width: 64px; height: auto; flex-shrink: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 14px; }


/* ---------- Piliers du Groupe ---------- */
.pillar-ico {
  width: 66px; height: 66px; margin: 0 auto 18px; display: grid; place-items: center;
  color: var(--navy); border: 1.5px solid var(--pearl); border-radius: 50%;
  background: var(--grey-ivory); transition: background .3s ease, transform .3s ease;
}
.pillar:hover .pillar-ico { background: var(--pearl); transform: scale(1.05); }
.pillar-ico svg { width: 34px; height: 34px; }
.pillar { text-align: center; }

/* ---------- Témoignages ---------- */
.testimonials { padding: 100px 0; background: var(--ivory-soft); text-align: center; }
.testimonials-sub { max-width: 600px; margin: 0 auto; opacity: .8; }
.placeholder-note {
  display: inline-block; margin: 22px auto 0; padding: 8px 18px; border-radius: 999px;
  background: #FFF4D6; border: 1px dashed #C9A227; color: #6B5310;
  font-size: .78rem; letter-spacing: .04em;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px; margin-top: 40px; text-align: left;
}
html[dir="rtl"] .testimonials-grid { text-align: right; }
.testimonial {
  position: relative; background: #fff; border: 1px solid var(--pearl);
  border-radius: var(--radius); padding: 40px 30px 30px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote-mark {
  position: absolute; top: 6px; left: 24px; font-family: var(--serif);
  font-size: 4rem; line-height: 1; color: var(--pearl);
}
html[dir="rtl"] .quote-mark { left: auto; right: 24px; }
.testimonial blockquote { font-size: .98rem; line-height: 1.65; color: var(--ink); flex: 1; }
.testimonial figcaption { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--pearl); padding-top: 14px; }
.testimonial figcaption strong { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); }
.testimonial figcaption span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); }

/* ---------- Bouton WhatsApp flottant ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0, 24, 60, .3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 16px 38px rgba(37, 211, 102, .45); }
.wa-float svg { width: 32px; height: 32px; }

@media (max-width: 720px) {
  .header-badge { width: 46px; }
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ============ PAGE PROJETS — titre de marque ============ */
.brand-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(3.4rem, 11vw, 8.5rem); line-height: .95;
  letter-spacing: .1em; color: var(--ivory); margin: 0 0 18px;
  text-shadow: 0 6px 40px rgba(0, 24, 60, .45);
}
html[lang="ar"] .brand-title { letter-spacing: normal; }

/* ============ PAGE GROUPE ============ */
.hero-group { min-height: 100vh; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-seal {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px;
  padding: 8px 22px 8px 10px; border-radius: 999px;
  background: rgba(254, 252, 244, .1); border: 1px solid rgba(254, 252, 244, .25);
  backdrop-filter: blur(6px);
}
.hero-seal img { width: 40px; height: auto; }
.hero-seal span {
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ivory); font-weight: 500;
}

/* --- Engagements --- */
.engagements { padding: 40px 0 110px; text-align: center; }

/* --- Nos projets --- */
.projects { padding: 110px 0; background: var(--ivory-soft); text-align: center; }
.projects-sub { max-width: 640px; margin: 0 auto; opacity: .8; }
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px; margin-top: 50px; text-align: left;
}
html[dir="rtl"] .projects-grid { text-align: right; }
.project-card {
  background: #fff; border: 1px solid var(--pearl); border-radius: calc(var(--radius) + 4px);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.project-media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-card:hover .project-media img { transform: scale(1.05); }
.project-status {
  position: absolute; top: 16px; left: 16px; padding: 7px 16px; border-radius: 999px;
  background: var(--ivory); color: var(--navy); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
}
html[dir="rtl"] .project-status { left: auto; right: 16px; }
.project-media-soon {
  display: grid; place-items: center;
  background: radial-gradient(ellipse 80% 90% at 70% 20%, rgba(221, 221, 221, .18), transparent 60%),
              linear-gradient(150deg, var(--navy-deep), var(--navy-soft));
}
.project-media-soon span {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: var(--pearl);
  border: 2px solid var(--pearl); padding: 10px 20px; opacity: .8;
}
.project-body { padding: 28px 28px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.project-city {
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--slate);
}
.project-body h3 { font-size: 1.75rem; }
.project-desc { font-size: .95rem; opacity: .8; flex: 1; }
.project-facts {
  list-style: none; display: flex; gap: 26px; padding: 16px 0;
  border-top: 1px solid var(--pearl); border-bottom: 1px solid var(--pearl); margin: 4px 0 6px;
}
.project-facts li { display: flex; flex-direction: column; }
.project-facts strong { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); }
.project-facts span { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); }
.project-tag {
  align-self: flex-start; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; color: var(--slate); border: 1.5px solid var(--pearl);
  border-radius: 999px; padding: 6px 14px;
}
.project-card .btn { align-self: flex-start; }

/* --- Bandeau contact --- */
.cta-band {
  padding: 80px 0; color: var(--ivory);
  background: radial-gradient(ellipse 70% 60% at 15% 0%, rgba(221, 221, 221, .12), transparent 55%),
              linear-gradient(160deg, var(--navy-deep), var(--navy));
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--ivory); margin-bottom: 8px; }
.cta-band p { opacity: .85; max-width: 460px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Révélation au défilement --- */
.rise { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.rise.in { opacity: 1; transform: none; }

/* ============ FOOTER INSTITUTIONNEL ============ */
.site-footer { background: var(--navy-deep); color: var(--ivory); padding: 66px 0 28px; text-align: left; }
html[dir="rtl"] .site-footer { text-align: right; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(254, 252, 244, .14);
}
.footer-brand-col { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
html[dir="rtl"] .footer-brand-col { align-items: flex-end; }
.footer-tag { font-size: .9rem; opacity: .7; max-width: 320px; line-height: 1.7; }
.footer-badge { width: 74px; height: auto; opacity: .95; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 {
  font-family: var(--sans); font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--pearl); font-weight: 600; margin-bottom: 6px;
}
.footer-col a { font-size: .92rem; opacity: .72; transition: opacity .25s, padding .25s; }
.footer-col a:hover { opacity: 1; padding-left: 4px; }
html[dir="rtl"] .footer-col a:hover { padding-left: 0; padding-right: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap; padding-top: 24px;
}
.footer-copy { font-size: .82rem; opacity: .55; }
.footer-note { font-size: .74rem; opacity: .4; }

/* ============ PAGES LÉGALES ============ */
.legal { padding: 140px 0 100px; }
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.legal .updated { color: var(--slate); font-size: .85rem; margin-bottom: 34px; }
.legal h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.legal p, .legal li { font-size: .98rem; line-height: 1.8; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
html[dir="rtl"] .legal ul { padding-left: 0; padding-right: 22px; }
.legal .todo {
  background: #FFF4D6; border: 1px dashed #C9A227; color: #6B5310;
  padding: 14px 18px; border-radius: 10px; font-size: .88rem; margin-bottom: 26px;
}
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 20px; }
.sitemap-grid h2 { margin-top: 0; }
.sitemap-grid a { display: block; padding: 7px 0; border-bottom: 1px solid var(--pearl); }
.sitemap-grid a:hover { color: var(--slate); }

@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .footer-top { grid-template-columns: 1fr; }
  .project-facts { gap: 18px; }
}

/* ============ AFFINAGE MOBILE (refonte) ============ */
@media (max-width: 620px) {
  .site-header { padding: 10px 16px; gap: 10px; }
  .brand-mark { width: 38px; height: 38px; font-size: 1.05rem; }
  .brand-text strong { font-size: .8rem; letter-spacing: .08em; white-space: nowrap; }
  .brand-text em { display: none; }
  .header-badge { width: 36px; }
  .lang-toggle { width: 34px; height: 34px; font-size: .85rem; }

  .hero { padding: 100px 18px 70px; }
  .hero h1 { font-size: clamp(1.55rem, 7.2vw, 2.1rem); }
  .hero h1 br { display: none; }
  .hero-sub { font-size: 1.05rem; margin-bottom: 28px; }
  .brand-title { font-size: clamp(2.6rem, 15vw, 4.2rem); letter-spacing: .06em; }

  .hero-seal { padding: 6px 16px 6px 8px; margin-bottom: 16px; }
  .hero-seal img { width: 30px; }
  .hero-seal span { font-size: .66rem; letter-spacing: .14em; }

  .hero-stats { width: 100%; max-width: 100%; }
  .hero-stats > div { padding: 12px 8px; }
  .hero-stats strong { font-size: .92rem; }
  .hero-stats span { font-size: .58rem; letter-spacing: .1em; }

  .projects, .engagements, .testimonials, .intro { padding-left: 4px; padding-right: 4px; }
  .project-body { padding: 22px 20px 24px; }
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn { flex: 1; text-align: center; }
}

/* ============ TITRE DE SECTION AGRANDI ============ */
.section-title-xl {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem); margin-bottom: 8px;
}

/* ============ PAGE CONTACT ============ */
.page-head {
  padding: 160px 0 70px; text-align: center; color: var(--ivory);
  background: radial-gradient(ellipse 70% 60% at 15% 0%, rgba(221, 221, 221, .12), transparent 55%),
              linear-gradient(160deg, var(--navy-deep), var(--navy));
}
.page-head h1 { color: var(--ivory); font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 12px; }
.page-head-sub { opacity: .85; max-width: 560px; margin: 0 auto; }

.contact-page { padding: 80px 0 110px; background: var(--ivory-soft); }
.contact-page .contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start;
}
.contact-info-block h2, .contact-form h2 { font-size: 1.9rem; margin-bottom: 18px; }
.contact-lines { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-line {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  background: #fff; border: 1px solid var(--pearl); border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
a.contact-line:hover { transform: translateX(4px); border-color: var(--navy); box-shadow: var(--shadow); }
html[dir="rtl"] a.contact-line:hover { transform: translateX(-4px); }
.contact-ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  display: grid; place-items: center; background: var(--grey-ivory);
  border: 1px solid var(--pearl); color: var(--navy);
}
.contact-ico svg { width: 22px; height: 22px; }
.contact-ico-wa { background: #25D366; border-color: #25D366; color: #fff; }
.contact-txt { display: flex; flex-direction: column; line-height: 1.35; }
.contact-txt strong { font-size: 1.05rem; color: var(--navy); font-weight: 500; }
.contact-txt em {
  font-style: normal; font-size: .74rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--slate);
}
.contact-map {
  border-radius: var(--radius); overflow: hidden; border: 6px solid #fff;
  box-shadow: var(--shadow); margin-bottom: 18px; background: var(--pearl);
}
.contact-map iframe { display: block; width: 100%; height: 300px; border: 0; }
.contact-page .contact-form { background: #fff; border: 1px solid var(--pearl); }
.form-intro { font-size: .93rem; opacity: .75; margin-bottom: 20px; }

@media (max-width: 860px) {
  .contact-page .contact-layout { grid-template-columns: 1fr; }
  .page-head { padding: 130px 0 56px; }
}

/* ---------- Retour des formulaires ---------- */
.form-ok { color: #1B7A3D; font-weight: 500; }
.form-ko { color: #B3261E; font-weight: 500; }
.contact-form button[type="submit"]:disabled { opacity: .6; cursor: wait; }
.pot-de-miel { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
