/* ================================================================
   THE 8TH HOUSE — Quiet Luxury Brand Identity
   Register: Brand · Reference: Aman, Rosewood morning lobby aesthetic
   Strategy: Cream-based light luxury — purple as accent, gold as detail
   Font: Cairo exclusive (300 / 400 / 600 / 700 / 800)
   ================================================================ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  /* Light luxury palette — cream is the foundation */
  --cream:          #F5F1EB;
  --warm-beige:     #EAE3D7;
  --soft-ivory:     #FAF7F2;
  --warm-white:     #FFFEFA;

  /* Purple — text + footer only */
  --purple-royal:   #2B1556;
  --purple-deep:    #1A0B2E;
  --midnight:       #0A0612;
  --purple-mid:     #3A1E4F;
  --purple-lift:    #4A2563;

  --gold:           #C5A572;
  --gold-soft:      #D4B585;
  --gold-dim:       rgba(197,165,114,.55);
  --gold-rule:      rgba(197,165,114,.3);
  --gold-rule-dk:   rgba(197,165,114,.15);

  /* Text on light backgrounds */
  --text-primary:   #2B1556;
  --text-secondary: #4A3D5C;
  --text-muted:     #8A7E96;
  --text-ghost:     #B8AECB;

  /* Legacy alias kept for footer/drawer */
  --off-white:      #F5F1EB;

  --border-gold:    rgba(197,165,114,.2);
  --border-light:   rgba(43,21,86,.08);

  /* Typography */
  --f: 'Cairo', sans-serif;

  /* Easing */
  --ease: cubic-bezier(.23,1,.32,1);

  /* Layout */
  --max:  1360px;
  --pad:  clamp(1.5rem, 5vw, 5rem);
  --sec:  clamp(5rem, 11vw, 9rem);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: lining-nums;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--f);
  background: var(--cream);
  color: var(--text-secondary);
  overflow-x: hidden;
  line-height: 1.8;
  cursor: none;
}

/* ── CUSTOM CURSOR ─────────────────────────────────────── */
.cur-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-100px, -100px);
  mix-blend-mode: difference;
  transition: opacity .3s;
  will-change: transform;
}

.cur-ring {
  position: fixed;
  top: 0; left: 0;
  width: 24px; height: 24px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-100px, -100px);
  mix-blend-mode: difference;
  transition: opacity .3s;
  will-change: transform;
}

@media (pointer: coarse) {
  body { cursor: auto; }
  .cur-dot, .cur-ring { display: none; }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a   { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
blockquote { font-style: normal; }
cite       { font-style: normal; }
ol         { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .belt__track--fwd,
  .belt__track--rev {
    animation: none !important;
  }
}

:focus-visible {
  outline: 2px solid var(--text-primary);
  outline-offset: 3px;
}

/* ── UTILITY: LABEL ──────────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold-rule);
  flex-shrink: 0;
}

.label--light { color: var(--gold-dim); }

/* ── SCROLL REVEALS ──────────────────────────────────────────── */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}

.js-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal-img {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.3s var(--ease), transform 1.3s var(--ease);
}

.js-reveal-img.in {
  opacity: 1;
  transform: scale(1);
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 200;
  padding: 1.5rem var(--pad);
  background: rgba(43,21,86,.72);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(197,165,114,.15);
  transition: background .55s ease, padding .55s ease;
}

.nav.scrolled {
  background: rgba(26,11,46,.97);
  backdrop-filter: blur(24px) saturate(1.4);
  padding: 1rem var(--pad);
  border-bottom: 1px solid rgba(197,165,114,.25);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .12rem;
}

.nav__logo-img {
  height: 30px;
  width: auto;
  display: block;
}

@media (min-width: 860px) {
  .nav__logo-img { height: 42px; }
}

html[lang="ar"] .nav__logo-en { display: none; }
html[lang="en"] .nav__logo-ar { display: none; }

.nav__est {
  font-size: .52rem;
  letter-spacing: .22em;
  color: var(--gold);
  opacity: .7;
  font-weight: 300;
  direction: ltr;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  direction: rtl;
}

.nav__link {
  font-size: .68rem;
  font-weight: 400;
  color: rgba(255,254,250,.70);
  transition: color .3s ease;
}

.nav__link:hover { color: var(--warm-white); }

.nav__cta {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--gold);
  padding: .55rem 1.35rem;
  border: 1px solid var(--gold-rule);
  transition: background .35s ease, border-color .35s ease, color .35s ease;
}

.nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--warm-white);
}

.nav__lang {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,254,250,.55);
  padding: .35rem .7rem;
  border: 1px solid rgba(255,254,250,.18);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  font-family: var(--f);
  transition: color .3s ease, border-color .3s ease;
  flex-shrink: 0;
}

.nav__lang:hover {
  color: var(--warm-white);
  border-color: rgba(255,254,250,.45);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--warm-white);
  transition: transform .4s var(--ease), opacity .3s ease;
}

@media (max-width: 860px) {
  .nav__links  { display: none; }
  .nav__burger { display: flex; }
}

/* ── i18n visibility ─────────────────────────────────────────── */
html[lang="ar"] .hero__sub     { display: none; }
html[lang="ar"] .hero__eight   { display: none; }
html[lang="en"] .proof-band__track span[lang="ar"]   { display: none; }
html[lang="en"] .proof-band__track .proof-band__gem--ar { display: none; }
html[lang="en"] .hero__title   { display: none; }
html[lang="en"] .hero__eight   { display: none; }
html[lang="ar"] .about__body--en { display: none; }
html[lang="en"] .about__body:not(.about__body--en) { display: none; }
html[lang="en"] .essence__ar     { display: none; }
html[lang="ar"] .essence__en     { display: none; }
html[lang="en"] .lm__type-ar     { display: none; }
html[lang="ar"] .lm__type-en     { display: none; }

/* ── i18n layout direction ───────────────────────────────────── */
html[lang="ar"] .hero__title      { font-size: clamp(1.1rem, 2.2vw, 1.9rem); letter-spacing: .06em; margin-bottom: 3rem; }
html[lang="ar"] .hero__title-main { color: var(--purple-royal); }
html[lang="ar"] .hero__title-rest { color: var(--warm-white); font-size: .82em; text-shadow: 0 1px 10px rgba(10,6,18,.55); }
html[lang="ar"] .label            { direction: ltr; }
html[lang="ar"] .journey__hd     { text-align: right; }
html[lang="ar"] .journey__h      { margin-left: 0; margin-right: 0; }
html[lang="ar"] .values__hd      { text-align: right; }
html[lang="ar"] .values__h       { margin-left: 0; margin-right: 0; }
html[lang="en"] .hero__body       { direction: ltr; text-align: left; }
html[lang="en"] .hero__sub        { text-align: left; direction: ltr; }
html[lang="en"] .hero__actions    { justify-content: flex-start; }
html[lang="en"] .hero__cta svg    { transform: scaleX(-1); }
html[lang="en"] .about__inner    { direction: ltr; }
html[lang="en"] .about__lead     { direction: ltr; text-align: left; }
html[lang="en"] .about__pillars  { direction: ltr; }
html[lang="en"] .about__h      { text-align: left; max-width: 100%; }
html[lang="en"] .about__body--en { max-width: 100%; }
/* nav */
html[lang="en"] .nav__links         { direction: ltr; }
html[lang="en"] .drawer__nav        { direction: ltr; }
/* vision & mission */
html[lang="en"] .vm__inner          { direction: ltr; }
html[lang="en"] .vm__col            { text-align: left; }
/* values */
html[lang="en"] .values__inner      { direction: ltr; }
/* property */
html[lang="en"] .property__inner    { direction: ltr; }
/* services */
html[lang="en"] .services__inner    { direction: ltr; }
html[lang="en"] .services__hd       { direction: ltr; text-align: left; }
html[lang="en"] .services__list     { direction: ltr; }
html[lang="en"] .svc__body          { direction: ltr; }
html[lang="en"] .svc__sub           { text-align: left; }
/* why */
html[lang="en"] .why__inner         { direction: ltr; }
html[lang="en"] .why__col-stats     { direction: ltr; }
html[lang="en"] .why__col-points    { direction: ltr; }
/* journey */
html[lang="en"] .journey__inner          { direction: ltr; }
html[lang="en"] .journey__steps::before  { right: auto; left: 1.375rem; }
html[lang="en"] .journey__hd            { text-align: left; }
html[lang="en"] .journey__h             { margin-left: 0; margin-right: 0; }
html[lang="en"] .values__hd             { text-align: left; }
html[lang="en"] .values__h              { margin-left: 0; margin-right: 0; }
/* testimonials */
html[lang="en"] .testimonials__hd   { direction: ltr; }
html[lang="en"] .quote              { direction: ltr; text-align: left; }
/* essence */
html[lang="en"] .essence__inner     { direction: ltr; }
/* contact */
html[lang="en"] .contact__inner     { direction: ltr; }
html[lang="en"] .contact__h         { text-align: center; }
html[lang="en"] .contact__sub       { text-align: center; }
html[lang="en"] .contact__btn svg   { right: auto; left: 1.35rem; }
/* footer */
html[lang="en"] .footer__nav        { direction: ltr; }
html[lang="en"] .footer__inner      { direction: ltr; }
html[lang="en"] .footer__btm        { direction: ltr; }
html[lang="en"] .lm__eyebrow        { text-align: left; }
/* lead modal full LTR flip */
html[lang="en"] .lm__box            { direction: ltr; }
html[lang="en"] .lm__close          { left: auto; right: 1.25rem; }
html[lang="en"] .lm__title          { text-align: center; }
html[lang="en"] .lm__sub            { text-align: center; }
html[lang="en"] .lm__legend         { text-align: left; }
html[lang="en"] .lm__label          { text-align: left; }
html[lang="en"] .lm__input,
html[lang="en"] .lm__select         { direction: ltr; text-align: left; }
html[lang="en"] .nbhd               { direction: ltr; }
html[lang="en"] .nbhd__search       { direction: ltr; text-align: left; }
html[lang="en"] .lm__type-en   {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: .02em;
  text-transform: none;
  direction: ltr;
}

/* ── DRAWER ──────────────────────────────────────────────────── */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}

.drawer.open {
  opacity: 1;
  visibility: visible;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  direction: rtl;
}

.drawer__link {
  font-size: clamp(1.8rem, 7vw, 2.75rem);
  font-weight: 300;
  color: var(--off-white);
  transition: color .3s ease;
  letter-spacing: .02em;
}

.drawer__link:hover { color: var(--gold); }

.drawer__link--cta {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold-rule);
  padding: .75rem 2.25rem;
  margin-top: .5rem;
  transition: background .35s ease;
}

.drawer__link--cta:hover {
  background: rgba(197,165,114,.1);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad) clamp(4rem, 9vw, 7rem);
  background: linear-gradient(160deg, var(--warm-white) 0%, var(--cream) 100%);
  overflow: hidden;
}


.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(245,241,235,.7) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .9;
  transform: scale(1.05);
  transition: transform 10s var(--ease);
  will-change: transform;
}

.hero.ready .hero__bg-img { transform: scale(1); }

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(43,21,86,.68)   0%,
      rgba(43,21,86,.25)  18%,
      rgba(43,21,86,.0)   38%
    ),
    linear-gradient(
      175deg,
      rgba(255,254,250,.0)  0%,
      rgba(245,241,235,.08) 50%,
      rgba(245,241,235,.72) 100%
    );
}

.hero__body {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  direction: rtl;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple-royal);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .7s .5s var(--ease) forwards;
}

.hero__label-city  { color: var(--cream); }

.hero__rule {
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: var(--purple-royal);
}

.hero__title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: .01em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .9s .7s var(--ease) forwards;
  display: flex;
  flex-direction: column;
  gap: .25em;
}

.hero__title-main {
  color: var(--purple-royal);
  font-size: 1em;
  font-weight: 700;
}

.hero__title-rest {
  color: var(--text-secondary);
  font-size: .72em;
  font-weight: 300;
  letter-spacing: .02em;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-bottom: 3rem;
  direction: ltr;
  text-align: right;
  opacity: 0;
  animation: fadeIn .7s 1.1s ease forwards;
  display: flex;
  flex-direction: column;
  gap: .25em;
}

.hero__eight {
  display: block;
  font-size: clamp(.8rem, 1.4vw, 1rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: .85rem;
  opacity: 0;
  animation: fadeIn .5s 1s ease forwards;
  direction: ltr;
}

.hero__sub-main {
  color: var(--text-primary);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero__sub-rest {
  color: var(--warm-white);
  font-size: .82em;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(10,6,18,.55);
}


.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .75rem;
  opacity: 0;
  animation: fadeIn .7s 1.35s ease forwards;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--warm-white);
  padding: 1rem 2.25rem;
  border: 1px solid var(--gold);
  transition: background .4s ease, color .4s ease, border-color .4s ease, opacity .4s ease;
}

@media (min-width: 860px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
  }
  .hero__cta {
    min-width: 200px;
  }
}

.hero__cta:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--warm-white);
}

.hero__cta--outline {
  background: var(--purple-royal);
  color: var(--warm-white);
  border-color: var(--purple-royal);
}

.hero__cta--outline:hover {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  color: var(--warm-white);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: var(--pad);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeIn .7s 2s ease forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, var(--gold-rule), transparent);
  animation: scrollPulse 2.4s 2.2s ease infinite;
  transform-origin: top;
}

.hero__scroll span {
  font-size: .5rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-ghost);
  writing-mode: vertical-rl;
}

@keyframes scrollPulse {
  0%      { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%     { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50.01%  { transform-origin: bottom; }
  100%    { transform: scaleY(0); transform-origin: bottom; opacity: .2; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}



/* ── ABOUT (من نحن) ──────────────────────────────────────────── */
.about {
  position: relative;
  background: var(--soft-ivory);
  padding: var(--sec) var(--pad);
  overflow: hidden;
}


.about__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
  direction: rtl;
}

.about__lead { direction: rtl; }

html[lang="ar"] .about__lead .label {
  display: flex;
  width: 100%;
}

html[lang="ar"] .about__lead .label::before {
  flex: 1;
}

.about__h {
  font-size: clamp(1rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .01em;
  color: var(--text-primary);
  margin-bottom: 2rem;
  max-width: 56ch;
}

.about__body {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 100%;
  margin-bottom: .9rem;
  font-weight: 400;
  text-align: right;
}

.about__body strong,
.vm__body strong,
.journey__desc strong,
.faq__a strong {
  font-weight: 700;
  color: var(--gold);
}

.about__body--en {
  font-size: .8rem;
  direction: ltr;
  text-align: left;
  color: var(--text-ghost);
  font-weight: 300;
}

.about__img-wrap {
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--warm-beige);
  margin-bottom: 2rem;
  border: 1px solid var(--border-gold);
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

.about__img-wrap:hover .about__img { transform: scale(1.04); }

.about__pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: nowrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-gold);
  direction: rtl;
}

.about__pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}

.about__pillar-n {
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -.02em;
  direction: ltr;
  unicode-bidi: isolate;
}

.about__pillar-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: .03em;
}

.about__sep {
  color: var(--gold-rule);
  font-size: .75rem;
  user-select: none;
}

@media (max-width: 860px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__img-wrap { aspect-ratio: 16/10; }
  .hero__scroll { display: none; }
}

/* ── VISION & MISSION ────────────────────────────────────────── */
.vm {
  background: var(--cream);
  padding: var(--sec) var(--pad);
  border-top: 1px solid rgba(197,165,114,.15);
}

.vm__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  direction: rtl;
}

.vm__div {
  background: linear-gradient(to bottom, transparent, rgba(197,165,114,.3) 30%, rgba(197,165,114,.3) 70%, transparent);
  align-self: stretch;
  min-height: 180px;
}

.vm__en {
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--gold-dim);
  margin-bottom: .5rem;
  direction: ltr;
  text-align: right;
}

.vm__h {
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: .01em;
  line-height: 1.3;
}

.vm__body {
  font-size: .92rem;
  line-height: 1.95;
  color: var(--text-secondary);
  font-weight: 400;
}

@media (max-width: 700px) {
  .vm__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .vm__div { display: none; }
}

/* ── VALUES (قيمنا) ──────────────────────────────────────────── */
.values {
  background: var(--soft-ivory);
  padding: var(--sec) var(--pad);
  border-top: 1px solid rgba(197,165,114,.15);
}

.values__inner {
  max-width: var(--max);
  margin: 0 auto;
  direction: rtl;
}

.values__hd {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.values__h {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: .02em;
  margin-top: .4rem;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(197,165,114,.18);
  border: 1px solid rgba(197,165,114,.18);
}

.values__card {
  background: var(--soft-ivory);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: background .3s ease;
}

.values__card:hover {
  background: var(--warm-white);
  box-shadow: inset 0 0 0 1px rgba(197,165,114,.25);
}

.values__gem {
  color: var(--gold-dim);
  font-size: .7rem;
  letter-spacing: .1em;
}

.values__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: .01em;
}

.values__desc {
  font-size: .87rem;
  line-height: 1.85;
  color: var(--text-secondary);
  font-weight: 400;
}

@media (max-width: 860px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ── PROOF BAND ──────────────────────────────────────────────── */
.proof-band {
  background: var(--warm-beige);
  border-top: 1px solid rgba(197,165,114,.2);
  border-bottom: 1px solid rgba(197,165,114,.2);
  overflow: hidden;
  padding: 1rem 0;
  white-space: nowrap;
  user-select: none;
}

.proof-band__track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: bandScroll 90s linear infinite;
  will-change: transform;
}

.proof-band__track span {
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.proof-band__gem {
  color: var(--gold) !important;
  font-size: .45rem !important;
  letter-spacing: 0 !important;
}

@keyframes bandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PROPERTY GALLERY (مساحاتنا) ────────────────────────────── */
.property {
  background: var(--warm-beige);
  padding: var(--sec) var(--pad);
}

.property__inner {
  max-width: var(--max);
  margin: 0 auto;
  direction: rtl;
}

.property__hd {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.property__h {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.3;
  margin-top: .6rem;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

.property__reel {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  margin: 0 calc(-1 * var(--pad));
}

.property__reel.property__reel--grabbing { cursor: grabbing; }

.property__reel-track {
  display: flex;
  gap: .75rem;
  width: max-content;
  padding: 0 var(--pad);
  animation: reelScroll 18s linear infinite;
  will-change: transform;
}

.property__reel-track--dragging { animation: none !important; }

.property__reel:not(.property__reel--grabbing):hover .property__reel-track {
  animation-play-state: paused;
}

@keyframes reelScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.property__slide {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: clamp(260px, 38vw, 520px);
  height: clamp(200px, 28vw, 390px);
  border-radius: 3px;
  border: 1px solid rgba(197,165,114,.2);
}

.property__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
  pointer-events: none;
}

.property__reel:not(.property__reel--grabbing) .property__slide:hover img {
  transform: scale(1.04);
}

.property__lbl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.2rem .9rem;
  background: linear-gradient(to top, rgba(10,6,18,.72) 0%, transparent 100%);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s, transform .3s;
}

.property__reel:not(.property__reel--grabbing) .property__slide:hover .property__lbl {
  opacity: 1;
  transform: translateY(0);
}

.property__drag-hint {
  text-align: center;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1.25rem;
  opacity: .7;
}

.property__rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.property__rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-rule), transparent);
}

.property__rule-gem {
  color: var(--gold-dim);
  font-size: .7rem;
  letter-spacing: .15em;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .property__lbl { opacity: 1; transform: none; }
}

/* ── SERVICES (خدماتنا) ──────────────────────────────────────── */
.services {
  position: relative;
  background: var(--cream);
  padding: var(--sec) var(--pad);
  overflow: hidden;
}

.services::before {
  display: none;
}

.services__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  direction: rtl;
}

.services__hd { direction: rtl; }

.services__h {
  font-size: clamp(1rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .01em;
  color: var(--text-primary);
}

.services__list {
  direction: rtl;
  border-top: 1px solid var(--border-gold);
}

.svc {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border-gold);
  align-items: start;
  transition: background .35s ease;
}

.svc:hover {
  background: rgba(43,21,86,.025);
  padding-right: .35rem;
  transition: background .35s ease, padding-right .35s var(--ease);
}

.svc__no {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold);
  padding-top: .4rem;
  text-align: center;
  direction: ltr;
}

.svc__body { direction: rtl; }

.svc__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .35rem;
  line-height: 1.3;
}

.svc__sub {
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
  direction: ltr;
  text-align: right;
  text-shadow: 0 1px 4px rgba(197,165,114,.35);
}

.svc__desc {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 400;
}

.svc__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.svc__bullets li {
  font-size: .87rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 860px) {
  .services__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── WHY (لماذا نحن) ─────────────────────────────────────────── */
.why {
  position: relative;
  background: var(--soft-ivory);
  padding: var(--sec) var(--pad);
  overflow: hidden;
}

.why::before {
  display: none;
}

.why__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  direction: rtl;
}

.why__col-stats { direction: rtl; }

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(197,165,114,.2);
  border: 1px solid rgba(197,165,114,.2);
  margin-top: 2rem;
}

.why__stat {
  padding: 2.25rem 1.5rem;
  background: var(--warm-white);
  text-align: center;
  transition: background .35s ease;
}

.why__stat:hover { background: var(--cream); }

.why__val {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .1em;
  direction: ltr;
  unicode-bidi: isolate;
}

.why__stat-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .2rem;
  letter-spacing: .02em;
}

.why__stat-en {
  font-size: .58rem;
  font-weight: 300;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-ghost);
  direction: ltr;
}

.why__col-points { direction: rtl; }

.why__h {
  font-size: clamp(1rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}

.why__list {
  border-top: 1px solid var(--border-gold);
}

.why__point {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-gold);
  align-items: start;
}

.why__marker {
  color: var(--gold);
  font-size: 1rem;
  padding-top: .1rem;
  text-align: center;
  font-weight: 300;
}

.why__point strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .4rem;
}

.why__point p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 400;
}

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

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

/* ── CUSTOMER JOURNEY (رحلة العميل) ─────────────────────────── */
.journey {
  background: var(--cream);
  padding: var(--sec) var(--pad);
  border-top: 1px solid rgba(197,165,114,.15);
}

.journey__inner {
  max-width: 860px;
  margin: 0 auto;
  direction: rtl;
}

.journey__hd {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.journey__h {
  font-size: clamp(1rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: .01em;
  margin-top: .4rem;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

.journey__steps {
  list-style: none;
  position: relative;
}

.journey__steps::before {
  content: '';
  position: absolute;
  right: 1.375rem;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(197,165,114,.3) 10%, rgba(197,165,114,.3) 90%, transparent);
}

.journey__step {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  align-items: start;
  position: relative;
  transition: opacity .3s ease;
}

.journey__steps:hover .journey__step { opacity: .55; }
.journey__steps:hover .journey__step:hover { opacity: 1; }

.journey__step:hover .journey__num {
  border-color: rgba(197,165,114,.7);
  background: var(--cream);
  color: var(--text-primary);
  transition: border-color .3s ease, background .3s ease, color .3s ease;
}

.journey__num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(197,165,114,.4);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--gold-dim);
  flex-shrink: 0;
  direction: ltr;
  position: relative;
  z-index: 1;
}

.journey__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .45rem;
  line-height: 1.3;
}

.journey__desc {
  font-size: .88rem;
  line-height: 1.85;
  color: var(--text-secondary);
  font-weight: 400;
}

@media (max-width: 480px) {
  .journey__inner { max-width: 100%; }
  .journey__steps::before { right: 1.25rem; }
  .journey__step { gap: 1rem; padding: 1.4rem 0; }
  .journey__num { width: 2.5rem; height: 2.5rem; font-size: .52rem; }
}

@media (max-width: 600px) {
  .essence__ar { font-size: .95rem; padding: 1.4rem 0; }
  .essence__en { font-size: .78rem; }
}

/* ── TESTIMONIALS (آراء العملاء) ─────────────────────────────── */
.testimonials {
  background: var(--warm-white);
  padding: var(--sec) 0;
  overflow: hidden;
}

.testimonials__hd {
  text-align: center;
  padding: 0 var(--pad);
  margin-bottom: 3.5rem;
  direction: rtl;
}

.testimonials__hd .label {
  direction: ltr;
  justify-content: center;
}

.testimonials__hd .label::before {
  background: var(--gold);
}

.testimonials__h {
  font-size: clamp(1rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text-primary);
  margin-bottom: .75rem;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

.testimonials__stars {
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: .2em;
}

/* Belt */
.belt {
  overflow: hidden;
  direction: ltr;
  margin-bottom: 1rem;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  user-select: none;
}


.belt__track {
  display: flex;
  direction: ltr;
  gap: 0;
  width: max-content;
  will-change: transform;
}

.belt__track--fwd { animation: beltFwd 110s linear infinite; }
.belt__track--rev { animation: beltRev 130s linear infinite; }

@keyframes beltFwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes beltRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.quote {
  flex-shrink: 0;
  width: 320px;
  margin-inline-end: 1rem;
  background: var(--cream);
  border: 1px solid rgba(197,165,114,.2);
  border-top: 2px solid var(--gold);
  border-radius: 4px;
  padding: 1.75rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  direction: rtl;
  box-shadow: 0 4px 20px rgba(43,21,86,.05);
  cursor: pointer;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.quote.active {
  border-color: var(--gold);
  border-top-width: 2px;
  box-shadow: 0 8px 32px rgba(43,21,86,.15), 0 0 0 1px var(--gold);
  transform: translateY(-4px);
}

.quote__text {
  font-size: .87rem;
  line-height: 1.8;
  color: var(--text-muted);
  flex: 1;
  font-weight: 400;
}

.quote__foot {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  border-top: 1px solid var(--border-gold);
  padding-top: 1rem;
}

.quote__name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.quote__meta {
  font-size: .78rem;
  color: var(--text-ghost);
  font-weight: 300;
}

.quote:hover {
  border-color: rgba(197,165,114,.5);
  box-shadow: 0 6px 28px rgba(43,21,86,.08);
  transition: border-color .3s ease, box-shadow .3s ease;
}

/* ── ESSENCE (جوهر شراكتنا) ─────────────────────────────────── */
.essence {
  background: var(--soft-ivory);
  padding: var(--sec) var(--pad);
  border-top: 1px solid rgba(197,165,114,.15);
}

.essence__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.essence__gem {
  color: var(--gold-dim);
  font-size: .8rem;
  letter-spacing: .2em;
}

.essence__h {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: .03em;
  max-width: 65ch;
}

.essence__ar {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 2;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 65ch;
  border-top: 1px solid rgba(197,165,114,.25);
  border-bottom: 1px solid rgba(197,165,114,.25);
  padding: 1.75rem 0;
}

.essence__en {
  font-size: clamp(.78rem, 1.2vw, .88rem);
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  direction: ltr;
  text-align: center;
  max-width: 62ch;
  letter-spacing: .02em;
}

/* ── CONTACT (تواصل معنا) ────────────────────────────────────── */
.contact {
  position: relative;
  background: var(--cream);
  padding: var(--sec) var(--pad);
  text-align: center;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(197,165,114,.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  direction: rtl;
}

.contact__inner .label { justify-content: center; }

.contact__h {
  font-size: clamp(1rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .01em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.contact__sub {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 50ch;
  margin: 0 auto 3rem;
  font-weight: 400;
}

.contact__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}

.contact__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: none;
  padding: 1.1rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background .35s ease, border-color .35s ease, color .35s ease;
}

.contact__btn svg {
  position: absolute;
  right: 1.35rem;
  top: 50%;
  transform: translateY(-50%);
}

.contact__btn--primary {
  background: var(--gold);
  color: var(--warm-white);
  border-color: var(--gold);
}

.contact__btn--primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--warm-white);
}

.contact__btn--ghost {
  background: var(--purple-deep);
  color: var(--warm-white);
  border-color: var(--purple-deep);
}

.contact__btn--ghost:hover {
  background: var(--purple-royal);
  border-color: var(--purple-royal);
  color: var(--warm-white);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--purple-deep);
  padding: 4rem var(--pad) 2rem;
  border-top: 1px solid var(--border-gold);
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-gold);
  direction: rtl;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__logo {
  display: block;
}

.footer__logo-img {
  width: 130px;
  height: auto;
  display: block;
  opacity: .9;
  max-width: 100%;
}

html[lang="ar"] .footer__logo-en { display: none; }
html[lang="en"] .footer__logo-ar { display: none; }

.footer__tagline {
  font-size: .75rem;
  color: rgba(245,241,235,.7);
  line-height: 1.6;
  font-weight: 300;
}

.footer__nav {
  display: flex;
  gap: 4rem;
  direction: rtl;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer__col-hd {
  font-size: .56rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: .35rem;
  font-weight: 400;
}

.footer__col a {
  font-size: .8rem;
  color: rgba(245,241,235,.7);
  transition: color .3s ease;
  font-weight: 300;
}

.footer__col a:hover { color: var(--gold); }

/* ── FOOTER TRUST BADGE (in bottom bar) ──────────────────────── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: .65rem 1.1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(197,165,114,.22);
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
  direction: rtl;
}

.trust-badge__logo {
  height: 35px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.trust-badge__sep {
  align-self: stretch;
  width: 1px;
  margin: .25rem 0;
  background: rgba(26,11,46,.12);
}

.trust-badge__cr {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  direction: ltr;
  gap: 1px;
  transform: translateY(5px);
}

html[lang="en"] .trust-badge__cr { align-items: flex-start; }

.trust-badge__cr-label {
  font-size: .5rem;
  font-weight: 600;
  color: #2c2c3a;
  letter-spacing: .03em;
  line-height: 1.05;
  white-space: nowrap;
}

.trust-badge__cr-num {
  font-size: .6rem;
  font-weight: 600;
  color: #2c2c3a;
  letter-spacing: .04em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

html[lang="en"] .trust-badge { direction: ltr; }

.footer__btm {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  direction: rtl;
}

.footer__btm-legal {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer__btm-dot {
  color: rgba(245,241,235,.25);
  font-size: .68rem;
}

.footer__btm p {
  font-size: .68rem;
  color: rgba(245,241,235,.35);
  letter-spacing: .04em;
  font-weight: 300;
}

.footer__cr {
  color: rgba(197,165,114,.45);
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer__nav   { gap: 2.5rem; }
  .footer__btm   { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .trust-badge      { gap: .8rem; padding: .55rem .95rem; }
  .trust-badge__logo { height: 32px; }
}

/* ── LEAD MODAL ──────────────────────────────────────────────── */
.lm {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  pointer-events: none;
}

.lm.open {
  visibility: visible;
  pointer-events: auto;
}

.lm__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,6,18,.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .4s ease;
}

.lm.open .lm__overlay { opacity: 1; }

.lm__box {
  position: relative;
  z-index: 1;
  background: var(--warm-white);
  border: 1px solid rgba(197,165,114,.25);
  box-shadow: 0 24px 80px rgba(43,21,86,.18);
  border-radius: 4px;
  width: 100%;
  max-width: 520px;
  max-height: 92svh;
  overflow-y: auto;
  padding: 2.5rem 2.25rem 2rem;
  direction: rtl;
  opacity: 0;
  transform: translateY(20px) scale(.98);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.lm.open .lm__box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lm__close {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-ghost);
  border-radius: 50%;
  transition: color .25s ease, background .25s ease;
}

.lm__close:hover {
  color: var(--text-primary);
  background: rgba(43,21,86,.06);
}

.lm__head {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--gold-rule);
  padding-bottom: 1.25rem;
}

.lm__eyebrow {
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--gold-dim);
  margin-bottom: .4rem;
  direction: ltr;
  text-align: right;
}

.lm__title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: .35rem;
}

.lm__sub {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 300;
}

.lm__form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.lm__fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.lm__legend {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: .03em;
  margin-bottom: .75rem;
  display: block;
}

/* type cards (مؤثثة / غير مؤثثة) */
.lm__type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}

.lm__type-card input[type="radio"] { display: none; }

.lm__type-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(197,165,114,.2);
  background: var(--cream);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.lm__type-card:hover .lm__type-inner {
  border-color: rgba(197,165,114,.5);
}

.lm__type-card input:checked + .lm__type-inner {
  border-color: var(--purple-royal);
  background: var(--purple-royal);
  box-shadow: none;
}
.lm__type-card input:checked + .lm__type-inner .lm__type-ar,
.lm__type-card input:checked + .lm__type-inner .lm__type-en {
  color: var(--warm-white);
  font-weight: 700;
}

.lm__type-ar {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.lm__type-en {
  font-size: .52rem;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-ghost);
  direction: ltr;
}

/* contact method radios */
.lm__radios {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lm__radio {
  display: flex;
  align-items: center;
  gap: .45rem;
  cursor: pointer;
  font-size: .85rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.lm__radio input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--gold);
  cursor: pointer;
}

/* text / number / select fields */
.lm__field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.lm__label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: .03em;
}

.lm__input,
.lm__select {
  font-family: var(--f);
  font-size: .88rem;
  color: var(--text-primary);
  background: var(--cream);
  border: 1px solid rgba(197,165,114,.25);
  border-radius: 4px;
  padding: .75rem 1rem;
  width: 100%;
  direction: rtl;
  transition: border-color .25s ease, box-shadow .25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.lm__input:focus,
.lm__select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,165,114,.12);
}

.lm__input::placeholder { color: var(--text-ghost); }

/* ── NEIGHBOURHOOD SEARCHABLE DROPDOWN ──────────────────────── */
.nbhd { position: relative; direction: rtl; }

.nbhd__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  font-family: var(--f);
  font-size: .88rem;
  color: var(--text-primary);
  background: var(--cream);
  border: 1px solid rgba(197,165,114,.25);
  border-radius: 4px;
  padding: .75rem 1rem;
  cursor: pointer;
  user-select: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.nbhd__trigger:focus,
.nbhd[aria-expanded="true"] .nbhd__trigger {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,165,114,.12);
}

.nbhd__placeholder { color: var(--text-ghost); flex: 1; }
.nbhd__placeholder.selected { color: var(--text-primary); }

.nbhd__chevron {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform .25s ease;
}

.nbhd[aria-expanded="true"] .nbhd__chevron { transform: rotate(180deg); }

.nbhd__panel {
  position: absolute;
  top: calc(100% + 4px);
  inset-inline: 0;
  z-index: 50;
  background: var(--warm-white);
  border: 1px solid rgba(197,165,114,.25);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(43,21,86,.12);
  display: none;
  flex-direction: column;
}

.nbhd[aria-expanded="true"] .nbhd__panel { display: flex; }

.nbhd__search-wrap {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .85rem;
  border-bottom: 1px solid rgba(197,165,114,.15);
  color: var(--text-ghost);
}

.nbhd__search {
  font-family: var(--f);
  font-size: .85rem;
  color: var(--text-primary);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  direction: rtl;
}

.nbhd__search::placeholder { color: var(--text-ghost); }

.nbhd__list {
  max-height: 220px;
  overflow-y: auto;
  list-style: none;
  padding: .35rem 0;
  scroll-behavior: smooth;
}

.nbhd__group {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold-dim);
  text-transform: uppercase;
  padding: .55rem 1rem .2rem;
  pointer-events: none;
}

.nbhd__opt {
  padding: .6rem 1rem;
  font-size: .88rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.nbhd__opt:hover,
.nbhd__opt.focused {
  background: rgba(197,165,114,.1);
  color: var(--text-primary);
}

.nbhd__opt.chosen {
  color: var(--text-primary);
  font-weight: 700;
}

.nbhd__empty {
  padding: .85rem 1rem;
  font-size: .85rem;
  color: var(--text-ghost);
  text-align: center;
}

/* anti-bot honeypot — kept out of view & out of the a11y tree */
.lm__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* privacy consent */
.lm__consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin: .25rem 0 .5rem;
  cursor: pointer;
  font-family: var(--f);
  font-size: .72rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.lm__consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: .15rem;
  accent-color: var(--gold);
  cursor: pointer;
}

.lm__consent-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lm__consent--err {
  color: #e07070;
}

.lm__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: 1rem;
  background: var(--purple-deep);
  color: var(--off-white);
  font-family: var(--f);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: .25rem;
  transition: background .35s ease, transform .2s ease;
}

.lm__submit:hover {
  background: var(--purple-royal);
  transform: translateY(-1px);
}

.lm__submit:active  { transform: translateY(0); }
.lm__submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* success screen */
.lm__done {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem 1rem;
  gap: .6rem;
}

.lm__done-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(197,165,114,.15);
  border: 1px solid var(--gold-rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: .5rem;
}

.lm__done-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.lm__done-sub {
  font-size: .88rem;
  color: var(--text-muted);
  font-weight: 300;
}

@media (max-width: 520px) {
  .lm__box { padding: 2rem 1.5rem 1.75rem; }
  .lm__title { font-size: 1.3rem; }
}

/* ── LANGUAGE SWITCH ANIMATION ───────────────────────────────── */
.lang-out-ltr { animation: langOutLtr .22s ease forwards; }
.lang-out-rtl { animation: langOutRtl .22s ease forwards; }
.lang-in-ltr  { animation: langInLtr  .28s ease forwards; }
.lang-in-rtl  { animation: langInRtl  .28s ease forwards; }

@keyframes langOutLtr { to   { opacity: 0; transform: translateX(-14px); } }
@keyframes langOutRtl { to   { opacity: 0; transform: translateX(14px);  } }
@keyframes langInLtr  { from { opacity: 0; transform: translateX(14px);  } to { opacity: 1; transform: translateX(0); } }
@keyframes langInRtl  { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: translateX(0); } }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq {
  background: var(--soft-ivory);
  padding: var(--sec) 0;
}

.faq__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.faq__hd {
  margin-bottom: 3.5rem;
}

.faq__h {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-gold);
  margin-bottom: 3rem;
}

.faq__item {
  border-bottom: 1px solid var(--border-gold);
  transition: background .25s ease;
}

.faq__item[open] {
  background: rgba(197,165,114,.05);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  font-family: var(--f);
  transition: color .25s ease;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold-rule);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C5A572' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E") center/10px no-repeat;
  transition: transform .3s var(--ease);
}

.faq__item[open] .faq__q::after {
  transform: rotate(180deg);
}

.faq__item[open] .faq__q {
  color: var(--gold);
}

.faq__a {
  padding-bottom: 1.5rem;
  animation: faqFade .3s ease;
}

.faq__a p {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 680px;
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: .5rem;
}

.faq__cta-text {
  font-size: .88rem;
  color: var(--text-muted);
}

.faq__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--f);
  letter-spacing: .06em;
  color: var(--off-white);
  background: var(--purple-deep);
  padding: .6rem 1.2rem;
  border-radius: 50px;
  transition: background .3s ease, transform .2s ease;
}

.faq__cta-btn svg {
  color: #25D366;
  flex-shrink: 0;
}

.faq__cta-btn:hover {
  background: var(--purple-royal);
  transform: translateY(-1px);
}

/* ── FLOATING WHATSAPP (mobile only) ─────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-start: 1.5rem;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--purple-deep);
  color: var(--off-white);
  border: 1px solid rgba(197,165,114,.2);
  padding: .75rem 1.1rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--f);
  letter-spacing: .04em;
  box-shadow: 0 4px 20px rgba(10,6,18,.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), opacity .4s ease, visibility .4s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  text-decoration: none;
}

.wa-float svg {
  color: #25D366;
  flex-shrink: 0;
}

.wa-float.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(10,6,18,.55);
  border-color: rgba(197,165,114,.4);
}
