:root {
  --gold-1: #f7db93;
  --gold-2: #d9a43c;
  --gold-3: #8c5916;
  --bg: #060606;
  --bg-soft: #0c0c0d;
  --panel: rgba(255,255,255,.045);
  --line: rgba(247,219,147,.14);
  --text: #f7f4ee;
  --muted: rgba(255,255,255,.72);
  --muted-2: rgba(255,255,255,.56);
  --shadow: 0 24px 72px rgba(0,0,0,.34);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1200px;
  --gold-gradient: linear-gradient(135deg, var(--gold-1), var(--gold-2) 52%, var(--gold-3));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(217,164,60,.10), transparent 22%),
    linear-gradient(180deg, #050505, #0b0b0c 42%, #070708 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.gold-text {
  color: var(--gold-1);
  text-shadow: 0 4px 18px rgba(0,0,0,.28);
}
@supports ((-webkit-background-clip:text) or (background-clip:text)) {
  .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

h1, h2, h3, h4, p { margin: 0; }
h1 {
  font-family: 'Cinzel', serif;
  letter-spacing: .01em;
  line-height: 1.08;
  font-size: clamp(1.34rem, 1.72vw, 1.72rem);
}
h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(.94rem, .98vw, 1.06rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: #fff;
}
h3 { font-size: 1rem; line-height: 1.32; }
p { color: var(--muted); }

.section {
  padding: 46px 0;
  position: relative;
}
.section-compact-bottom { padding-bottom: 22px; }
.section-compact-top { padding-top: 22px; }
.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--gold-1);
}
.section-head {
  max-width: 920px;
  margin-bottom: 14px;
}
.section-head h2 {
  line-height: 1.14;
  max-width: none;
}
.section-head p {
  margin-top: 8px;
  font-size: .92rem;
  line-height: 1.66;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .92rem;
  font-weight: 700;
  transition: .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold-gradient);
  color: #181109;
  box-shadow: 0 14px 34px rgba(217,164,60,.26);
}
.btn-secondary {
  background: rgba(255,255,255,.06);
  border-color: rgba(247,219,147,.18);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border-color: rgba(247,219,147,.22);
  color: var(--gold-1);
}

/* HEADER */
.topbar {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(5,5,5,.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(247,219,147,.08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(247,219,147,.16);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.brand-text small {
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold-1);
  margin-bottom: 4px;
}
.brand-text strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .84rem;
  color: rgba(255,255,255,.78);
}
.nav a {
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s ease;
}
.nav a:hover {
  color: var(--gold-1);
}
.nav a:hover::after {
  transform: scaleX(1);
}
.topbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-actions { display: none; align-items: center; gap: 12px; }
.mobile-menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(247,219,147,.18);
  background: rgba(255,255,255,.05);
  color: var(--gold-1);
  font: inherit;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  transition: .25s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.mobile-menu-toggle__label {
  font-size: .72rem;
  text-transform: uppercase;
}
.mobile-menu-toggle__burger {
  position: relative;
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
}
.mobile-menu-toggle__burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-1);
  transition: .25s ease;
  transform-origin: center;
}
.mobile-menu-toggle.is-active .mobile-menu-toggle__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-toggle.is-active .mobile-menu-toggle__burger span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-active .mobile-menu-toggle__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: max-height .35s ease, opacity .25s ease, transform .25s ease, padding-bottom .25s ease;
  padding-bottom: 0;
}
.mobile-nav.is-open {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  padding-bottom: 14px;
}
.mobile-nav .menu-panel {
  display: grid;
  gap: 12px;
  padding-top: 6px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(247,219,147,.14);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
  transform: skewX(-12deg);
}
.mobile-nav a span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  transform: skewX(12deg);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-1);
}
.mobile-nav a span::after {
  content: "↗";
  color: rgba(255,255,255,.78);
  font-size: .8rem;
}

/* FULLSCREEN CAROUSEL */
.hero-carousel {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background: #090909;
  border-bottom: 1px solid rgba(247,219,147,.08);
  margin-bottom: 16px;
}
.hero-carousel::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(6,6,6,0), rgba(6,6,6,.85));
  z-index: 3;
  pointer-events: none;
}
.carousel-stage {
  position: relative;
  min-height: calc(100vh - 78px);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 1.15s ease, visibility 1.15s ease;
  overflow: hidden;
}
.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.62) contrast(1.03) saturate(1.02);
  transform: scale(1.03);
  transition: transform 6s ease;
}
.carousel-slide.is-active img {
  transform: scale(1.09);
}
.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.64) 0%, rgba(0,0,0,.36) 42%, rgba(0,0,0,.48) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.24) 100%);
}
.carousel-content {
  position: relative;
  z-index: 4;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
}
.carousel-content .container {
  position: relative;
  z-index: 5;
}
.carousel-copy {
  position: relative;
  z-index: 6;
  width: min(560px, 100%);
  padding: 30px 28px 32px 34px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(7,7,7,.92), rgba(7,7,7,.78));
  border: 1px solid rgba(247,219,147,.28);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 64px rgba(0,0,0,.38);
}
.carousel-copy::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: var(--gold-gradient);
  opacity: .98;
}
.carousel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(247,219,147,.24);
  color: var(--gold-1);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.carousel-copy h1 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(1.34rem, 1.72vw, 1.68rem);
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0,0,0,.42);
}
.carousel-copy p {
  max-width: 42ch;
  font-size: .92rem;
  line-height: 1.58;
  color: rgba(255,255,255,.98);
  text-shadow: 0 4px 16px rgba(0,0,0,.28);
}
.carousel-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.carousel-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(247,219,147,.16);
  font-size: .74rem;
  color: #fff;
}
.carousel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(247,219,147,.16);
  background: rgba(10,10,10,.48);
  color: var(--gold-1);
  font-size: 1.2rem;
  cursor: pointer;
  transition: .25s ease;
  backdrop-filter: blur(8px);
}
.carousel-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(247,219,147,.32);
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(10,10,10,.48);
  border: 1px solid rgba(247,219,147,.12);
  backdrop-filter: blur(8px);
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: .25s ease;
}
.carousel-dot.is-active {
  width: 30px;
  background: var(--gold-1);
}

/* TRUST / INTRO */
.trust-band {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 6;
}
.trust-shell {
  padding: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(247,219,147,.12);
  box-shadow: 0 20px 54px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.trust-item {
  padding: 16px 15px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(247,219,147,.08);
}
.trust-item strong {
  display: block;
  color: var(--gold-1);
  font-size: 1rem;
  margin-bottom: 4px;
}
.trust-item span {
  color: var(--muted-2);
  font-size: .92rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: start;
}
.intro-copy p + p {
  margin-top: 14px;
}
.intro-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(247,219,147,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.intro-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.intro-list div {
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(247,219,147,.08);
  color: var(--muted);
}

/* CARDS */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(247,219,147,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  transition: .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(247,219,147,.18);
  box-shadow: 0 22px 52px rgba(0,0,0,.28);
}
.icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(247,219,147,.20), rgba(140,89,22,.18));
  border: 1px solid rgba(247,219,147,.18);
  font-size: 1.35rem;
  margin-bottom: 15px;
}
.card h3 {
  margin-bottom: 10px;
  color: #fff;
}
.card p {
  font-size: .96rem;
  line-height: 1.72;
}

/* WHY */
.luxury-block {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(247,219,147,.06);
  border-bottom: 1px solid rgba(247,219,147,.06);
}
.luxury-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.mosaic {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  min-height: 540px;
}
.photo {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(247,219,147,.12);
  box-shadow: var(--shadow);
  background: #101010;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) contrast(1.03);
  transition: transform .5s ease;
}
.photo:hover img {
  transform: scale(1.04);
}
.stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.feature-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(247,219,147,.10);
}
.feature-item strong {
  display: block;
  color: var(--gold-1);
  margin-bottom: 6px;
}

/* PROJECTS */
.projects-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 34px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.project-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(247,219,147,.10);
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
}
.project-visual {
  position: relative;
  height: 252px;
  overflow: hidden;
  background: #111;
}
.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.76) contrast(1.02);
  transition: transform .45s ease;
}
.project-card:hover .project-visual img {
  transform: scale(1.05);
}
.project-visual::after {
  content: "Projet";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #140f09;
  background: var(--gold-gradient);
  font-weight: 800;
}
.project-body { padding: 22px; }
.project-body small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-1);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 800;
}
.project-body h3 {
  margin-bottom: 10px;
  color: #fff;
}
.project-body p {
  font-size: .95rem;
  line-height: 1.72;
}

/* METHOD */
.method {
  background: linear-gradient(180deg, rgba(247,219,147,.03), rgba(255,255,255,0));
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.step {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(247,219,147,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.16);
}
.step-num {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-1);
  font-size: .70rem;
  font-weight: 800;
  letter-spacing: .24em;
}
.step h3 {
  margin-bottom: 8px;
  color: #fff;
}
.step p {
  font-size: .94rem;
  line-height: 1.72;
}

/* ABOUT / CONTACT */
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: start;
}
.about-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(247,219,147,.12);
  background: linear-gradient(135deg, rgba(247,219,147,.09), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.about-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(247,219,147,.16), transparent 65%);
}
.about-boxes {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin-top: 24px;
}
.about-box {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(247,219,147,.10);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

/* BEFORE / AFTER GALLERY */
.ba-gallery {
  background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0));
  border-top: 1px solid rgba(247,219,147,.06);
  border-bottom: 1px solid rgba(247,219,147,.06);
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.ba-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(247,219,147,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.ba-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 12px;
}
.ba-card-head h3 {
  color: #fff;
  font-size: 1rem;
  line-height: 1.26;
}
.ba-card-head span {
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold-1);
  font-weight: 800;
  white-space: nowrap;
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(247,219,147,.08);
}
.ba-image {
  appearance: none;
  border: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
  text-align: left;
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: #0f0f0f;
}
.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  filter: brightness(.88) contrast(1.02);
}
.ba-card:hover .ba-image img {
  transform: scale(1.04);
}
.ba-label {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5,5,5,.72);
  border: 1px solid rgba(247,219,147,.18);
  color: #fff;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ba-body {
  padding: 18px 20px 20px;
}
.ba-body p {
  font-size: .92rem;
  line-height: 1.68;
}
.ba-image::after {
  content: "Voir le projet";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5,5,5,.74);
  border: 1px solid rgba(247,219,147,.18);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.ba-card:hover .ba-image::after,
.ba-image:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
.ba-image:focus-visible {
  outline: 2px solid rgba(247,219,147,.55);
  outline-offset: -2px;
}
.ba-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s ease;
}
.ba-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.ba-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(12px);
}
.ba-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(14,14,15,.98), rgba(10,10,11,.98));
  border: 1px solid rgba(247,219,147,.14);
  box-shadow: 0 28px 86px rgba(0,0,0,.48);
  padding: 28px;
}
.ba-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(247,219,147,.18);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: .22s ease;
}
.ba-modal-close:hover,
.ba-modal-close:focus-visible {
  background: rgba(247,219,147,.10);
  color: var(--gold-1);
  outline: none;
}
.ba-modal-head {
  padding-right: 54px;
  margin-bottom: 22px;
}
.ba-modal-head h3 {
  margin-top: 6px;
  font-size: 1.18rem;
  color: #fff;
}
.ba-modal-head p {
  margin-top: 10px;
  max-width: 740px;
  font-size: .95rem;
  line-height: 1.72;
}
.ba-modal-view {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(247,219,147,.10);
}
.ba-modal-track {
  position: relative;
  min-height: 560px;
}
.ba-modal-slide {
  display: none;
  grid-template-columns: 1.15fr .85fr;
  min-height: 560px;
}
.ba-modal-slide.is-active { display: grid; }
.ba-modal-media {
  min-height: 560px;
  background: #0f0f10;
}
.ba-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 34px 32px;
  background:
    radial-gradient(circle at top left, rgba(247,219,147,.10), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
}
.ba-modal-step {
  display: inline-flex;
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(247,219,147,.18);
  background: rgba(5,5,5,.5);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-1);
}
.ba-modal-copy h4 {
  font-size: 1.08rem;
  line-height: 1.3;
  color: #fff;
}
.ba-modal-copy p {
  font-size: .94rem;
  line-height: 1.78;
  color: var(--muted);
}
.ba-modal-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.ba-modal-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ba-modal-tab,
.ba-modal-arrow {
  border: 1px solid rgba(247,219,147,.16);
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
  transition: .22s ease;
}
.ba-modal-tab {
  padding: 10px 16px;
  border-radius: 999px;
  font: inherit;
  font-size: .85rem;
  font-weight: 700;
}
.ba-modal-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
}
.ba-modal-tab.is-active,
.ba-modal-tab:hover,
.ba-modal-tab:focus-visible,
.ba-modal-arrow:hover,
.ba-modal-arrow:focus-visible {
  background: rgba(247,219,147,.10);
  border-color: rgba(247,219,147,.34);
  color: var(--gold-1);
  outline: none;
}

.contact {
  overflow: hidden;
  border-top: 1px solid rgba(247,219,147,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, .96fr) minmax(420px, 1.04fr);
  gap: 34px;
  align-items: start;
}
.contact-copy { min-width: 0; }
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.contact-list div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(247,219,147,.10);
  color: var(--muted);
}
.contact-card {
  min-width: 0;
  align-self: start;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(247,219,147,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
form {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}
input, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(247,219,147,.12);
  outline: none;
  font: inherit;
  color: #fff;
  background: rgba(0,0,0,.24);
}
input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,.42);
}
input:focus, textarea:focus {
  border-color: rgba(247,219,147,.38);
  box-shadow: 0 0 0 4px rgba(247,219,147,.10);
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.span-2 { grid-column: span 2; }

footer {
  padding: 24px 0;
  border-top: 1px solid rgba(247,219,147,.08);
  color: rgba(255,255,255,.58);
  font-size: .88rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* FINAL ADDITIONS */
.gallery-meta {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.gallery-meta div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(247,219,147,.10);
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}
.gallery-meta strong {
  display: block;
  margin-bottom: 4px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-1);
}
.zone-shell {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}
.zone-card,
.map-card,
.legal-item,
.footer-branding {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(247,219,147,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.zone-card,
.footer-branding {
  padding: 26px;
  border-radius: 28px;
}
.map-card {
  padding: 10px;
  border-radius: 30px;
  overflow: hidden;
}
.map-frame {
  width: 100%;
  min-height: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 22px;
  background: #0e0e0f;
  filter: grayscale(.15) contrast(1.02) brightness(.96);
}
.zone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}
.zone-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(247,219,147,.12);
  color: var(--gold-1);
  font-size: .84rem;
  font-weight: 700;
}
.zone-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.zone-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(247,219,147,.10);
  color: var(--muted);
}
.zone-list strong,
.legal-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-1);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.faq-item {
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(247,219,147,.10);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding-right: 54px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-1);
  font-size: 1.2rem;
  font-weight: 700;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
}
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(247,219,147,.12);
  outline: none;
  font: inherit;
  color: #fff;
  background: rgba(0,0,0,.24);
  appearance: none;
}
select:focus {
  border-color: rgba(247,219,147,.38);
  box-shadow: 0 0 0 4px rgba(247,219,147,.10);
}
select option { color: #111; }
.form-note {
  margin-top: 14px;
  color: var(--muted-2);
  font-size: .84rem;
  line-height: 1.6;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(247,219,147,.18);
  font-size: .88rem;
  line-height: 1.55;
}
.form-feedback.is-visible { display: block; }
.form-feedback.is-success {
  background: rgba(103,180,117,.10);
  border-color: rgba(103,180,117,.28);
  color: #eaf8ec;
}
.form-feedback.is-error {
  background: rgba(184,93,93,.12);
  border-color: rgba(214,132,132,.28);
  color: #fff0f0;
}
.contact-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-actions .btn,
.contact-actions button.btn {
  border: none;
  font: inherit;
}
.contact-card button.btn {
  -webkit-appearance: none;
  appearance: none;
}
footer { padding-top: 0; }
.footer-legal {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  padding: 0 0 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(247,219,147,.08);
}
.footer-branding h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.28;
  color: #fff;
}
.footer-branding p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.legal-item {
  padding: 16px 18px;
  border-radius: 20px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}
.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 145;
  display: none;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(7,7,7,.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(247,219,147,.14);
  box-shadow: 0 22px 44px rgba(0,0,0,.36);
}
.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 14px;
  text-align: center;
  font-size: .88rem;
  font-weight: 700;
  color: #14100b;
  background: var(--gold-gradient);
}
.mobile-sticky-cta a:nth-child(2) {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(247,219,147,.14);
}
.mobile-sticky-cta a:nth-child(3) {
  background: rgba(255,255,255,.10);
  color: var(--gold-1);
  border: 1px solid rgba(247,219,147,.18);
}

/* MULTILINGUAL MOCKUP */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(247,219,147,.16);
  background: rgba(255,255,255,.05);
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.lang-switcher button {
  border: none;
  background: transparent;
  color: rgba(255,255,255,.76);
  padding: 8px 12px;
  border-radius: 999px;
  font: inherit;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  transition: .2s ease;
}
.lang-switcher button:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.lang-switcher button.is-active {
  background: var(--gold-gradient);
  color: #171007;
  box-shadow: 0 10px 22px rgba(217,164,60,.18);
}
.lang-switcher--mobile {
  display: none;
  margin-bottom: 14px;
  width: max-content;
}
.lang-switcher-label {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold-1);
  margin-right: 4px;
  padding-left: 4px;
}
html[lang="ar"] body {
  font-family: 'Tajawal', 'Inter', sans-serif;
}
html[lang="ar"] .brand,
html[lang="ar"] .topbar-inner,
html[lang="ar"] .topbar-cta,
html[lang="ar"] .nav,
html[lang="ar"] .carousel-actions,
html[lang="ar"] .projects-top,
html[lang="ar"] .contact-list,
html[lang="ar"] .footer-inner,
html[lang="ar"] .mobile-sticky-cta,
html[lang="ar"] .ba-card-head,
html[lang="ar"] .ba-modal-controls {
  direction: rtl;
}
html[lang="ar"] .brand {
  flex-direction: row-reverse;
}
html[lang="ar"] .brand-text,
html[lang="ar"] .carousel-copy,
html[lang="ar"] .intro-copy,
html[lang="ar"] .intro-panel,
html[lang="ar"] .section-head,
html[lang="ar"] .project-body,
html[lang="ar"] .ba-body,
html[lang="ar"] .about-panel,
html[lang="ar"] .about-content,
html[lang="ar"] .zone-card,
html[lang="ar"] .contact-grid > div:first-child,
html[lang="ar"] .contact-card,
html[lang="ar"] .footer-branding,
html[lang="ar"] .legal-grid,
html[lang="ar"] .ba-modal-copy,
html[lang="ar"] .ba-modal-head {
  text-align: right;
}
html[lang="ar"] .carousel-copy,
html[lang="ar"] .section-head,
html[lang="ar"] .intro-copy,
html[lang="ar"] .intro-panel,
html[lang="ar"] .about-panel,
html[lang="ar"] .about-content,
html[lang="ar"] .zone-card,
html[lang="ar"] .contact-grid > div:first-child,
html[lang="ar"] .footer-branding,
html[lang="ar"] .legal-grid,
html[lang="ar"] .ba-modal-copy,
html[lang="ar"] .ba-modal-head,
html[lang="ar"] .faq-item summary,
html[lang="ar"] .faq-item p {
  direction: rtl;
}
html[lang="ar"] .contact-list a,
html[lang="ar"] .legal-item a,
html[lang="ar"] .mobile-sticky-cta a,
html[lang="ar"] .zone-pill,
html[lang="ar"] .btn,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select {
  font-family: 'Tajawal', 'Inter', sans-serif;
}
html[lang="ar"] .brand-text small,
html[lang="ar"] .section-tag,
html[lang="ar"] .mobile-menu-toggle__label,
html[lang="ar"] .lang-switcher button {
  letter-spacing: .04em;
}
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select {
  text-align: right;
}
html[lang="ar"] .faq-item summary::after {
  left: 0;
  right: auto;
}

/* JOOMLA FINAL CLEAN OVERRIDES */
.leadermtp-home .header.container-header,
.leadermtp-home .container-topbar,
.leadermtp-home .navbar-brand,
.leadermtp-home .container-nav,
.leadermtp-home .container-banner,
.leadermtp-home .container-top-a,
.leadermtp-home .container-top-b,
.leadermtp-home .container-bottom-a,
.leadermtp-home .container-bottom-b,
.leadermtp-home .container-sidebar-right,
.leadermtp-home .container-sidebar-left,
.leadermtp-home .container-footer.footer,
.leadermtp-home .breadcrumb,
.leadermtp-home .breadcrumbs,
.leadermtp-home .mod-breadcrumbs,
.leadermtp-home .page-header,
.leadermtp-home .article-info,
.leadermtp-home .com-content-article__info,
.leadermtp-home .icons {
  display: none !important;
}
.leadermtp-home.wrapper-static,
.leadermtp-home.wrapper-fluid,
.leadermtp-home .site-grid,
.leadermtp-home .container-component,
.leadermtp-home .container-component main,
.leadermtp-home .item-page,
.leadermtp-home article,
.leadermtp-home .com-content-article,
.leadermtp-home .com-content-article__body {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.leadermtp-home .site-grid {
  display: block !important;
  grid-template-columns: 1fr !important;
}
.leadermtp-home .container-component { display: block !important; }
.leadermtp-home main {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.leadermtp-home { overflow-x: hidden !important; }
.leadermtp-home a,
.leadermtp-home a:hover,
.leadermtp-home a:focus,
.leadermtp-home a:active {
  text-decoration: none !important;
}
.leadermtp-home h1,
.leadermtp-home h2,
.leadermtp-home h3,
.leadermtp-home h4,
.leadermtp-home h5,
.leadermtp-home h6 {
  color: #f7f4ee !important;
}
.leadermtp-home .topbar,
.leadermtp-home .topbar * {
  box-sizing: border-box;
}
.leadermtp-home .topbar .nav a,
.leadermtp-home .topbar nav a,
.leadermtp-home .topbar .menu a,
.leadermtp-home .topbar .main-nav a,
.leadermtp-home .nav a {
  color: rgba(247,244,238,.92) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  letter-spacing: .01em !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: .25rem 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  transition: color .25s ease, opacity .25s ease !important;
}
.leadermtp-home .topbar .nav a:hover,
.leadermtp-home .topbar nav a:hover,
.leadermtp-home .topbar .menu a:hover,
.leadermtp-home .topbar .main-nav a:hover,
.leadermtp-home .nav a:hover,
.leadermtp-home .topbar .nav a:focus,
.leadermtp-home .topbar nav a:focus,
.leadermtp-home .topbar .menu a:focus,
.leadermtp-home .topbar .main-nav a:focus,
.leadermtp-home .nav a:focus,
.leadermtp-home .topbar .nav a:active,
.leadermtp-home .topbar nav a:active,
.leadermtp-home .topbar .menu a:active,
.leadermtp-home .topbar .main-nav a:active,
.leadermtp-home .nav a:active {
  color: #f7db93 !important;
  text-decoration: none !important;
  outline: none !important;
}
.leadermtp-home .topbar .nav li,
.leadermtp-home .topbar nav li,
.leadermtp-home .topbar .menu li,
.leadermtp-home .topbar .main-nav li {
  list-style: none !important;
}
.leadermtp-home .topbar .nav a.active,
.leadermtp-home .topbar nav a.active,
.leadermtp-home .topbar .menu a.active,
.leadermtp-home .topbar .main-nav a.active {
  color: #f7db93 !important;
}
.leadermtp-home .brand,
.leadermtp-home .brand-text,
.leadermtp-home .topbar-cta a,
.leadermtp-home .mobile-nav a {
  color: #f7f4ee !important;
}
.leadermtp-home .mobile-nav a:hover,
.leadermtp-home .topbar-cta a:hover {
  color: #f7db93 !important;
}
.leadermtp-home .section-tag,
.leadermtp-home .gold-text,
.leadermtp-home .eyebrow {
  color: #f7db93 !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}
.leadermtp-home .hero-carousel,
.leadermtp-home .carousel-stage,
.leadermtp-home .carousel-slide,
.leadermtp-home .carousel-content {
  width: 100% !important;
  max-width: 100% !important;
}
.leadermtp-home .carousel-content .container {
  width: min(1320px, calc(100% - 72px)) !important;
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.leadermtp-home .carousel-copy {
  width: min(560px, 100%) !important;
  margin-left: 24px !important;
  margin-right: 0 !important;
}
.leadermtp-home .hero-panel,
.leadermtp-home .hero-card,
.leadermtp-home .hero-copy {
  background: rgba(5,5,5,.78) !important;
  border: 1px solid rgba(247,219,147,.14) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.26) !important;
}
.leadermtp-home .container,
.leadermtp-home .section > .container,
.leadermtp-home .trust-band > .container,
.leadermtp-home .contact > .container,
.leadermtp-home footer > .container {
  width: min(1200px, calc(100% - 56px)) !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.leadermtp-home .topbar .container {
  width: min(1320px, calc(100% - 48px)) !important;
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.leadermtp-home .section {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.leadermtp-home .trust-shell,
.leadermtp-home .intro-grid,
.leadermtp-home .cards-3,
.leadermtp-home .luxury-grid,
.leadermtp-home .about-grid,
.leadermtp-home .contact-grid,
.leadermtp-home .footer-legal,
.leadermtp-home .footer-inner {
  max-width: 100% !important;
}
.leadermtp-home .card,
.leadermtp-home .cards-3 .card,
.leadermtp-home .feature-list .card,
.leadermtp-home .faq-item,
.leadermtp-home .project-card,
.leadermtp-home .contact-card,
.leadermtp-home .info-card {
  display: block !important;
  padding: 22px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)) !important;
  border: 1px solid rgba(247,219,147,.10) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.18) !important;
  color: #f7f4ee !important;
}
.leadermtp-home .card h3,
.leadermtp-home .cards-3 .card h3,
.leadermtp-home .feature-list .card h3,
.leadermtp-home .faq-item h3,
.leadermtp-home .project-card h3,
.leadermtp-home .contact-card h3,
.leadermtp-home .info-card h3 {
  color: #f7f4ee !important;
}
.leadermtp-home .card p,
.leadermtp-home .cards-3 .card p,
.leadermtp-home .feature-list .card p,
.leadermtp-home .faq-item p,
.leadermtp-home .project-card p,
.leadermtp-home .contact-card p,
.leadermtp-home .info-card p {
  color: rgba(255,255,255,.78) !important;
}
.leadermtp-home .icon {
  width: 50px !important;
  height: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 16px !important;
  margin-bottom: 15px !important;
  background: rgba(247,219,147,.10) !important;
  color: #f7db93 !important;
  font-size: 1.2rem !important;
}

/* SOCIALS FINAL ROBUST FOR JOOMLA */
.leadermtp-home .social-block,
.social-block {
  margin-top: 18px !important;
  margin-bottom: 26px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(247,219,147,.10) !important;
}

.leadermtp-home .social-title,
.social-title {
  margin: 0 0 12px !important;
  font-size: .76rem !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: rgba(247,219,147,.76) !important;
}

.leadermtp-home .social-links,
.social-links {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 14px !important;
}

.leadermtp-home .social-link,
.social-link {
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 20px !important;
  border: 1px solid rgba(247,219,147,.18) !important;
  background: rgba(255,255,255,.03) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.16) !important;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease !important;
}

.leadermtp-home .social-link:hover,
.leadermtp-home .social-link:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px) !important;
  background: rgba(247,219,147,.08) !important;
  border-color: rgba(247,219,147,.34) !important;
  box-shadow: 0 14px 26px rgba(0,0,0,.20) !important;
  outline: none !important;
}

/* texte gardé pour éviter que Joomla supprime les liens vides */
.leadermtp-home .social-link__fallback,
.social-link__fallback {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* base icône */
.leadermtp-home .social-link::before,
.social-link::before {
  content: "" !important;
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  background-color: #f7db93 !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
}

/* WhatsApp */
.leadermtp-home .social-link--wa::before,
.social-link--wa::before,
.leadermtp-home .social-link:nth-child(1)::before,
.social-link:nth-child(1)::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M20.52 3.48A11.82 11.82 0 0 0 12.07 0C5.5 0 .16 5.34.16 11.91c0 2.1.55 4.14 1.6 5.94L0 24l6.34-1.66a11.86 11.86 0 0 0 5.73 1.46h.01c6.57 0 11.91-5.34 11.91-11.91 0-3.18-1.24-6.17-3.47-8.41ZM12.08 21.8h-.01a9.85 9.85 0 0 1-5.02-1.37l-.36-.21-3.76.99 1-3.67-.24-.38a9.84 9.84 0 0 1-1.51-5.25c0-5.45 4.43-9.88 9.89-9.88 2.64 0 5.12 1.03 6.98 2.9a9.8 9.8 0 0 1 2.9 6.98c0 5.45-4.43 9.89-9.88 9.89Zm5.42-7.42c-.3-.15-1.77-.87-2.05-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.95 1.16-.17.2-.35.22-.65.08-.3-.15-1.26-.46-2.4-1.47-.89-.79-1.49-1.77-1.66-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.62-.92-2.22-.24-.58-.48-.5-.67-.5h-.57c-.2 0-.52.07-.8.37-.27.3-1.04 1.02-1.04 2.5 0 1.47 1.07 2.89 1.22 3.09.15.2 2.1 3.2 5.09 4.49.71.31 1.27.49 1.7.63.71.22 1.36.19 1.87.11.57-.08 1.77-.72 2.02-1.41.25-.69.25-1.29.17-1.41-.07-.12-.27-.2-.57-.35Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M20.52 3.48A11.82 11.82 0 0 0 12.07 0C5.5 0 .16 5.34.16 11.91c0 2.1.55 4.14 1.6 5.94L0 24l6.34-1.66a11.86 11.86 0 0 0 5.73 1.46h.01c6.57 0 11.91-5.34 11.91-11.91 0-3.18-1.24-6.17-3.47-8.41ZM12.08 21.8h-.01a9.85 9.85 0 0 1-5.02-1.37l-.36-.21-3.76.99 1-3.67-.24-.38a9.84 9.84 0 0 1-1.51-5.25c0-5.45 4.43-9.88 9.89-9.88 2.64 0 5.12 1.03 6.98 2.9a9.8 9.8 0 0 1 2.9 6.98c0 5.45-4.43 9.89-9.88 9.89Zm5.42-7.42c-.3-.15-1.77-.87-2.05-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.95 1.16-.17.2-.35.22-.65.08-.3-.15-1.26-.46-2.4-1.47-.89-.79-1.49-1.77-1.66-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.62-.92-2.22-.24-.58-.48-.5-.67-.5h-.57c-.2 0-.52.07-.8.37-.27.3-1.04 1.02-1.04 2.5 0 1.47 1.07 2.89 1.22 3.09.15.2 2.1 3.2 5.09 4.49.71.31 1.27.49 1.7.63.71.22 1.36.19 1.87.11.57-.08 1.77-.72 2.02-1.41.25-.69.25-1.29.17-1.41-.07-.12-.27-.2-.57-.35Z'/></svg>");
}

/* Facebook */
.leadermtp-home .social-link--fb::before,
.social-link--fb::before,
.leadermtp-home .social-link:nth-child(2)::before,
.social-link:nth-child(2)::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M22 12a10 10 0 1 0-11.56 9.88v-6.99H7.9V12h2.54V9.8c0-2.5 1.49-3.89 3.78-3.89 1.09 0 2.23.2 2.23.2v2.46H15.2c-1.21 0-1.58.75-1.58 1.52V12h2.69l-.43 2.89h-2.26v6.99A10 10 0 0 0 22 12'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M22 12a10 10 0 1 0-11.56 9.88v-6.99H7.9V12h2.54V9.8c0-2.5 1.49-3.89 3.78-3.89 1.09 0 2.23.2 2.23.2v2.46H15.2c-1.21 0-1.58.75-1.58 1.52V12h2.69l-.43 2.89h-2.26v6.99A10 10 0 0 0 22 12'/></svg>");
}

/* Instagram */
.leadermtp-home .social-link--ig::before,
.social-link--ig::before,
.leadermtp-home .social-link:nth-child(3)::before,
.social-link:nth-child(3)::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 3.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 0 1 12 7.5Zm0 2A2.5 2.5 0 1 0 14.5 12 2.5 2.5 0 0 0 12 9.5ZM17.75 6.5a1.25 1.25 0 1 1-1.25 1.25 1.25 1.25 0 0 1 1.25-1.25Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 3.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 0 1 12 7.5Zm0 2A2.5 2.5 0 1 0 14.5 12 2.5 2.5 0 0 0 12 9.5ZM17.75 6.5a1.25 1.25 0 1 1-1.25 1.25 1.25 1.25 0 0 1 1.25-1.25Z'/></svg>");
}

/* LinkedIn */
.leadermtp-home .social-link--in::before,
.social-link--in::before,
.leadermtp-home .social-link:nth-child(4)::before,
.social-link:nth-child(4)::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4.98 3.5A1.75 1.75 0 1 1 3.23 5.25 1.75 1.75 0 0 1 4.98 3.5ZM3.5 8h3v12h-3Zm5 0h2.88v1.64h.04A3.16 3.16 0 0 1 14.26 8c3.06 0 3.62 2.01 3.62 4.62V20h-3v-6.53c0-1.56-.03-3.56-2.17-3.56-2.17 0-2.5 1.7-2.5 3.45V20h-3Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4.98 3.5A1.75 1.75 0 1 1 3.23 5.25 1.75 1.75 0 0 1 4.98 3.5ZM3.5 8h3v12h-3Zm5 0h2.88v1.64h.04A3.16 3.16 0 0 1 14.26 8c3.06 0 3.62 2.01 3.62 4.62V20h-3v-6.53c0-1.56-.03-3.56-2.17-3.56-2.17 0-2.5 1.7-2.5 3.45V20h-3Z'/></svg>");
}

/* CONTACT GRID FINAL FIX */
.leadermtp-home .contact-grid,
.contact-grid {
  display: grid !important;
  grid-template-columns: minmax(320px, .96fr) minmax(420px, 1.04fr) !important;
  gap: 34px !important;
  align-items: start !important;
}

.leadermtp-home .contact-copy,
.contact-copy,
.leadermtp-home .contact-card,
.contact-card {
  min-width: 0 !important;
}

.leadermtp-home .contact-card,
.contact-card {
  align-self: start !important;
}

.leadermtp-home .site-grid,
.leadermtp-home .container-component,
.leadermtp-home .container-component main,
.leadermtp-home .item-page,
.leadermtp-home .com-content-article,
.leadermtp-home .com-content-article__body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* RESPONSIVE */
@media (min-width: 1024px) {
  .section-head h2,
  .intro-copy h2,
  .luxury-grid h2,
  .about-panel h2,
  .contact-grid h2 {
    white-space: nowrap;
  }
}

@media (max-width: 1120px) {
  .nav, .topbar-cta { display: none; }
  .mobile-actions, .mobile-menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .intro-grid, .luxury-grid, .about-grid, .contact-grid, .zone-shell, .footer-legal, .faq-grid { grid-template-columns: 1fr; }
  .cards-3, .projects-grid, .ba-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .mosaic { min-height: auto; grid-template-columns: 1fr; }
  .stack { grid-template-rows: auto; }
  .photo { min-height: 260px; }
  .lang-switcher--desktop { display: none; }
  .lang-switcher--mobile { display: inline-flex; }
}

@media (max-width: 1024px) {
  .legal-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .leadermtp-home .topbar .container,
  .leadermtp-home .carousel-content .container,
  .leadermtp-home .trust-band .container,
  .leadermtp-home .section .container,
  .leadermtp-home .contact .container,
  .leadermtp-home footer .container {
    width: min(100%, calc(100% - 28px)) !important;
  }
  .leadermtp-home .carousel-copy {
    margin-left: 0 !important;
    width: min(620px, 100%) !important;
  }
}

@media (max-width: 860px) {
  body { padding-bottom: 88px; }
  .mobile-sticky-cta { display: grid; }
}

@media (max-width: 780px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .section { padding: 40px 0; }
  .section-compact-bottom { padding-bottom: 18px; }
  .section-compact-top { padding-top: 18px; }
  .topbar-inner { min-height: 72px; }
  .brand-logo { width: 48px; height: 48px; border-radius: 14px; }
  .brand-text small { font-size: .5rem; }
  .brand-text strong { font-size: .9rem; }
  .carousel-stage, .carousel-content, .hero-carousel { min-height: 76vh; }
  .carousel-copy {
    padding: 22px 18px 84px 24px;
    background: linear-gradient(180deg, rgba(7,7,7,.94), rgba(7,7,7,.82));
  }
  .carousel-copy::before {
    left: 12px;
    top: 16px;
    bottom: 16px;
  }
  .carousel-copy p {
    font-size: .88rem;
    line-height: 1.62;
  }
  .carousel-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .carousel-actions .btn { width: 100%; }
  .carousel-controls { bottom: 18px; gap: 10px; }
  .trust-band { margin-top: 0; }
  .cards-3, .projects-grid, .steps-grid, .about-boxes, .trust-grid, form, .ba-grid, .legal-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  .projects-top, .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-card, .about-panel, .card, .step, .zone-card, .footer-branding, .legal-item {
    padding: 22px;
  }
  .ba-modal { padding: 14px; }
  .ba-modal-dialog {
    padding: 20px;
    border-radius: 24px;
  }
  .ba-modal-head { padding-right: 42px; }
  .ba-modal-slide,
  .ba-modal-slide.is-active {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ba-modal-track,
  .ba-modal-media { min-height: 320px; }
  .ba-modal-copy { padding: 24px 20px; }
  .span-2 { grid-column: span 1; }
}

@media (max-width: 680px) {
  .map-frame { min-height: 320px; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(1.16rem, 5vw, 1.46rem); }
  h2 { font-size: .92rem; }
  .carousel-kicker {
    font-size: .57rem;
    letter-spacing: .18em;
  }
  .carousel-copy { padding: 18px 15px 82px 22px; }
  .carousel-badges span { font-size: .71rem; }
  .carousel-controls {
    left: 18px;
    right: 18px;
    transform: none;
    justify-content: space-between;
  }
  .carousel-dots {
    padding: 9px 12px;
    gap: 8px;
  }
  .brand { gap: 10px; }
  .brand-text strong { font-size: .86rem; }
  .mobile-menu-toggle { padding: 10px 14px; }
  .ba-modal-head h3 { font-size: 1.02rem; }
  .ba-modal-copy h4 { font-size: .98rem; }
  .ba-modal-controls { align-items: stretch; }
  .ba-modal-tabs { width: 100%; }
  .ba-modal-tab {
    flex: 1 1 auto;
    text-align: center;
  }
}


/* ===== FOOTER ALIGN FIX FINAL ===== */

.leadermtp-home .footer-legal,
.footer-legal {
  display: grid !important;
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr) !important;
  gap: 18px !important;
  align-items: start !important;
}

.leadermtp-home .footer-branding,
.footer-branding {
  align-self: start !important;
  height: 100% !important;
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.leadermtp-home .footer-branding h3,
.footer-branding h3 {
  margin-top: 0 !important;
}

.leadermtp-home .legal-grid,
.legal-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: start !important;
}

.leadermtp-home .legal-item,
.legal-item {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.leadermtp-home .social-block:empty,
.social-block:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

@media (max-width: 1024px) {
  .leadermtp-home .footer-legal,
  .footer-legal {
    grid-template-columns: 1fr !important;
  }

  .leadermtp-home .legal-grid,
  .legal-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 680px) {
  .leadermtp-home .legal-grid,
  .legal-grid {
    grid-template-columns: 1fr !important;
  }
}
.topbar .brand-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.topbar .brand-logo img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .topbar .brand-logo img {
    height: 58px;
    max-width: 250px;
  }
}

@media (max-width: 640px) {
  .topbar .brand-logo img {
    height: 46px;
    max-width: 200px;
  }
}