/* ═══════════════════════════════════════════════════════════
   GOLDEN PALM — Brand: forest green + metallic gold (logo)
═══════════════════════════════════════════════════════════ */

:root {
  --bg: #051810;
  --bg-elevated: #0A2219;
  --bg-card: #0E2A20;
  --bg-dark: #030F0C;
  --bg-dark-2: #061410;

  --text: #F4EFE4;
  --text-muted: #B5C4B8;
  --text-soft: #7A8F82;
  --text-inverse: #051810;

  --gold-light: #F0E2BC;
  --gold: #D4AF37;
  --gold-mid: #C5A059;
  --gold-dark: #8C7128;
  --accent: var(--gold-mid);
  --accent-dark: var(--gold-dark);
  --border: rgba(212, 175, 75, 0.14);
  --border-strong: rgba(212, 175, 75, 0.28);
  --gold-glow: rgba(212, 175, 75, 0.12);

  --nav-h: 76px;
  --max-w: 1280px;
  --section-pad: clamp(72px, 10vw, 120px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --fAr: 'Neue Haas Grotesk', 'Neue Haas Grotesk Display Pro', 'Noto Sans Arabic', sans-serif;
  --fEn: 'Neue Haas Grotesk', 'Neue Haas Grotesk Display Pro', -apple-system, sans-serif;
  --fDis: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

html[lang="ar"] {
  --fAr: 'HSN Shahd', 'Noto Sans Arabic', 'Segoe UI', sans-serif;
  --fDis: 'HSN Shahd', 'Noto Sans Arabic', Georgia, serif;
}

html[lang="en"] {
  --fEn: 'Acumin Digits', 'Neue Haas Grotesk', 'Neue Haas Grotesk Display Pro', -apple-system, sans-serif;
  --fDis: 'Acumin Digits', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --fBody: 'Acumin Digits', 'Neue Haas Grotesk', 'Neue Haas Grotesk Display Pro', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: var(--gp-root-size, 16px); }

body {
  font-family: var(--fEn);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

html[lang="ar"] body { font-family: var(--fAr); }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: rgba(212, 175, 75, 0.25); color: var(--text); }

/* ── Typography ── */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow-c { text-align: center; }

.section-title {
  font-family: var(--fDis);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title em { font-style: italic; color: var(--gold-light); }

.section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 540px;
}

.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 20px 0 28px;
}

/* ── Layout ── */
.page-content { padding-top: var(--nav-h); min-height: 60vh; }

/* First-child heroes own nav clearance — avoid double --nav-h gap */
.page-content:has(> .page-hero),
.page-content--lux:has(> .page-hero),
.page-content--lux:has(> .lux-detail-hero),
.page-content--lux:has(> .careers-hero-wrap),
.page-content--lux:has(> .blog-article--has-cover) {
  padding-top: 0;
}
.section {
  padding: var(--section-pad) clamp(24px, 5vw, 48px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

.section--alt { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── Buttons ── */
.btn-gold,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-mid) 45%, var(--gold-light) 100%);
  color: var(--text-inverse);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(212, 175, 75, 0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.btn-gold:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 75, 0.35);
}

.btn-outline,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1px solid var(--border-strong);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.btn-outline:hover,
.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  color: var(--gold-light);
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: background 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 20px);
  margin-inline-start: auto;
  flex-shrink: 1;
  min-width: 0;
}

body.is-home #navbar {
  background: linear-gradient(180deg, rgba(5, 24, 16, 0.88) 0%, rgba(5, 24, 16, 0.35) 70%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.is-home #navbar .nav-brand-name,
body.is-home #navbar .nav-brand-sub,
body.is-home #navbar .nav-links a,
body.is-home #navbar .lang-btn { color: rgba(255, 255, 255, 0.92); }

body.is-home #navbar .nav-links a.active-link { color: #fff; }

body.is-home #navbar .lang-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

body.is-home #navbar .btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid), var(--gold-light));
  color: var(--text-inverse);
}

body.is-home #navbar .hamburger span { background: #fff; }

#navbar.scrolled,
body:not(.is-home) #navbar {
  background: rgba(5, 24, 16, 0.94);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

body.is-home #navbar.scrolled {
  background: rgba(5, 24, 16, 0.96);
  border-bottom-color: var(--border);
}

body.is-home #navbar.scrolled .nav-links a,
body.is-home #navbar.scrolled .lang-btn { color: var(--text-muted); }

body.is-home #navbar.scrolled .nav-links a:hover,
body.is-home #navbar.scrolled .nav-links a.active-link { color: var(--gold-light); }

body.is-home #navbar.scrolled .hamburger span { background: var(--gold-mid); }

.nav-brand { display: flex; align-items: center; gap: 14px; }

.nav-logo {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img { width: 100%; height: 100%; object-fit: contain; }

.nav-brand-name,
.nav-brand-sub { display: none; }

.site-logo {
  display: block;
  background: transparent;
  mix-blend-mode: screen;
}

.nav-logo-full {
  height: clamp(44px, 6.5vw, 64px);
  width: auto;
  max-width: min(140px, 36vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 14px rgba(212, 175, 75, 0.4));
}

html[lang="ar"] .nav-logo-full {
  object-position: right center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}

.nav-links a {
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active-link { color: var(--gold-light); }

/* Leadership dropdown */
.nav-item--dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.25s;
}

.nav-dropdown__trigger:hover,
.nav-dropdown__trigger.active-link,
.nav-item--dropdown.is-open .nav-dropdown__trigger {
  color: var(--gold-light);
}

.nav-dropdown__chevron {
  transition: transform 0.25s ease;
}

.nav-item--dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-start: 0;
  min-width: 200px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: rgba(8, 22, 18, 0.98);
  border: 1px solid rgba(212, 175, 75, 0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 120;
}

.nav-item--dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 11px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.is-current {
  color: var(--gold-light);
  background: rgba(212, 175, 75, 0.08);
}

body.is-home #navbar .nav-dropdown__trigger {
  color: rgba(255, 255, 255, 0.92);
}

body.is-home #navbar .nav-dropdown__trigger:hover,
body.is-home #navbar .nav-dropdown__trigger.active-link,
body.is-home #navbar .nav-item--dropdown.is-open .nav-dropdown__trigger {
  color: #fff;
}

body.is-home #navbar.scrolled .nav-dropdown__trigger {
  color: var(--text-muted);
}

body.is-home #navbar.scrolled .nav-dropdown__trigger:hover,
body.is-home #navbar.scrolled .nav-dropdown__trigger.active-link,
body.is-home #navbar.scrolled .nav-item--dropdown.is-open .nav-dropdown__trigger {
  color: var(--gold-light);
}

/* Mobile nav — leadership sub-menu */
.mobile-nav__group {
  border-bottom: 1px solid rgba(212, 175, 75, 0.12);
}

.mobile-nav__group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: start;
}

.mobile-nav__group-toggle svg {
  transition: transform 0.25s ease;
}

.mobile-nav__group.is-open .mobile-nav__group-toggle svg {
  transform: rotate(180deg);
}

.mobile-nav__sub {
  display: none;
  flex-direction: column;
  padding-bottom: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.mobile-nav__group.is-open .mobile-nav__sub {
  display: flex;
}

.mobile-nav__sub a {
  padding: 14px 28px 14px 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: none;
}

.mobile-nav__sub a:hover {
  color: var(--gold-light);
}

.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(10, 34, 25, 0.6);
}

.lang-toggle a.lang-btn {
  text-decoration: none;
  display: inline-block;
}

.lang-btn {
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  border-radius: 100px;
  transition: all 0.25s;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  color: var(--text-inverse);
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold-mid);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0;
  width: min(320px, 88vw);
  height: 100vh;
  background: var(--bg-card);
  z-index: 999;
  padding: calc(var(--nav-h) + 24px) 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s var(--ease);
}

html[lang="ar"] .mobile-nav { right: 0; transform: translateX(100%); }
html[lang="ar"] .mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

html[lang="en"] .mobile-nav { left: 0; transform: translateX(-100%); }

html[lang="en"] .mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.nav-overlay.show { opacity: 1; pointer-events: all; }

/* ── Hero (home) ── */
.home-hero-wrap { margin-top: calc(-1 * var(--nav-h)); }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  overflow: hidden;
  padding-top: var(--nav-h);
  box-sizing: border-box;
}

.hero-slides { position: absolute; inset: 0; }

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 8s ease;
}

.slide.active { opacity: 1; transform: scale(1); }

.slide-1 { background-image: url('../images/home/hero-1.png'); }
.slide-2 { background-image: url('../images/home/hero-2.png'); }
.slide-3 { background-image: url('../images/home/hero-3.png'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 24, 16, 0.88) 0%, rgba(5, 24, 16, 0.45) 42%, rgba(5, 24, 16, 0.15) 70%),
    linear-gradient(to top, rgba(5, 24, 16, 0.92) 0%, transparent 55%);
}

html[lang="ar"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(5, 24, 16, 0.88) 0%, rgba(5, 24, 16, 0.45) 42%, rgba(5, 24, 16, 0.15) 70%),
    linear-gradient(to top, rgba(5, 24, 16, 0.92) 0%, transparent 55%);
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px clamp(24px, 5vw, 48px) clamp(72px, 10vw, 120px);
  display: flex;
  align-items: flex-end;
  min-height: inherit;
  flex: 1;
}

.hero-content {
  max-width: min(780px, 92vw);
  padding: clamp(28px, 4vw, 40px);
  padding-inline-start: clamp(28px, 4vw, 44px);
  background: rgba(6, 14, 26, 0.42);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 75, 0.18);
  border-inline-start: 3px solid var(--gold-mid);
}

html[lang="ar"] .hero-content {
  border-inline-start: none;
  border-inline-end: 3px solid var(--gold-mid);
}

@media (max-width: 1200px) {
  .nav-links a { padding: 8px 7px; font-size: 10px; }
}

@media (max-width: 1100px) {
  .hero-content { max-width: 100%; }
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(5, 24, 16, 0.94) 0%,
      rgba(5, 24, 16, 0.55) 50%,
      rgba(5, 24, 16, 0.35) 100%
    );
  }
}

.hero-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--fDis);
  font-size: clamp(1.85rem, 3.8vw, 3.1rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}

/* عرض أفقي: تجاوز span.en { display:inline } التي كانت تكسر كل كلمة في سطر */
.hero-title > span.ar,
.hero-title > span.en {
  display: none;
  max-width: 100%;
}

html[lang="ar"] .hero-title > span.ar {
  display: block;
}

html[lang="en"] .hero-title > span.en {
  display: block;
}

.hero-title-em {
  display: inline;
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
  white-space: normal;
}

html[lang="ar"] .hero-title-em { font-style: normal; }

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 100%;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

body.is-home .hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

body.is-home .hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.scroll-hint,
.slide-counter { display: none; }

.slide-dots-wrap,
.slide-dots,
.dot { display: none !important; }

/* ── Stats ── */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  background: var(--bg-card);
  padding: 48px 32px;
  text-align: center;
}

.stat-num {
  font-family: var(--fDis);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--gold-mid);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-unit { font-size: 0.55em; color: var(--gold-light); }

.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ── Quote ── */
.quote-strip {
  padding: var(--section-pad) clamp(24px, 5vw, 48px);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark { display: none; }

.quote-text {
  font-family: var(--fDis);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

html[lang="ar"] .quote-text { font-style: normal; }

.quote-author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ── About ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-visual { position: relative; }

.about-main-card {
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-main-card::before,
.about-main-card::after { display: none; }

.about-logo-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vw, 40px);
  background: radial-gradient(ellipse at center, rgba(212, 175, 75, 0.1) 0%, transparent 72%);
  border: 1px solid rgba(212, 175, 75, 0.12);
}

.about-logo-img {
  width: auto;
  max-width: min(280px, 88%);
  height: auto;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(212, 175, 75, 0.28));
  animation: none;
}

/* ── About: Abu Dhabi landmarks slider ── */
.landmarks-slider-section {
  padding-top: 0;
}

.landmarks-slider-header {
  margin-bottom: 32px;
}

.landmarks-slider {
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}

.landmarks-slides,
.landmarks-track {
  position: relative;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  max-height: min(72vh, 560px);
}

.landmark-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s;
}

.landmark-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.landmark-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.landmark-slide-overlay,
.landmark-slide::after {
  pointer-events: none;
}

.landmark-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 24, 16, 0.92) 0%,
    rgba(5, 24, 16, 0.35) 45%,
    rgba(5, 24, 16, 0.08) 100%
  );
  z-index: 2;
}

.landmark-caption {
  position: absolute;
  inset-inline-start: clamp(20px, 4vw, 40px);
  inset-block-end: clamp(20px, 4vw, 36px);
  z-index: 3;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: min(90%, 480px);
}

.landmark-caption-num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-mid);
  font-family: var(--fSans);
  text-transform: uppercase;
}

.landmark-caption .ar,
.landmark-caption .en {
  font-family: var(--fDis);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--t1);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.landmark-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 75, 0.45);
  background: rgba(5, 24, 16, 0.55);
  color: var(--gold-light);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  backdrop-filter: blur(6px);
}

.landmark-nav:hover {
  background: rgba(212, 175, 75, 0.2);
  border-color: var(--gold-mid);
  color: var(--t1);
}

.landmark-nav--prev { inset-inline-start: 16px; }
.landmark-nav--next { inset-inline-end: 16px; }

.landmark-dots {
  position: absolute;
  inset-block-end: 16px;
  inset-inline-end: clamp(20px, 4vw, 40px);
  z-index: 4;
  display: flex;
  gap: 8px;
}

.landmark-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.landmark-dot.is-active {
  background: var(--gold-mid);
  transform: scale(1.25);
}

.landmark-dot:hover { background: var(--gold-light); }

@media (max-width: 768px) {
  .landmarks-slides,
  .landmarks-track {
    aspect-ratio: 4 / 5;
    min-height: 360px;
    max-height: 520px;
  }

  .landmark-nav {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .landmark-nav--prev { inset-inline-start: 8px; }
  .landmark-nav--next { inset-inline-end: 8px; }

  .landmark-dots {
    inset-inline-end: auto;
    inset-inline-start: 20px;
  }
}

.about-features { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }

.feature {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.feature:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.feature-bar {
  width: 2px;
  min-height: 36px;
  background: var(--accent);
  flex-shrink: 0;
}

.feature h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.feature p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Properties ── */
.prop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.prop-filter {
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.25s var(--ease);
}

.prop-filter:hover {
  color: var(--gold-light);
  border-color: var(--border-strong);
}

.prop-filter.is-active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  color: var(--text-inverse);
  border-color: transparent;
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.prop-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}

a.prop-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.prop-card:hover,
a.prop-card--link:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45), 0 0 48px var(--gold-glow);
  border-color: var(--border-strong);
}

.prop-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
}

.prop-visual__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--bg3, #0f1f35) 0%, var(--bg0, #0a1628) 100%);
}

.prop-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s var(--ease);
}

.prop-card:hover .prop-bg,
a.prop-card--link:hover .prop-bg { transform: scale(1.06); }

.prop-bg-1 { background-image: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=800&q=80'); }
.prop-bg-2 { background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=800&q=80'); }
.prop-bg-3 { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=800&q=80'); }
.prop-bg-4 { background-image: url('https://images.unsplash.com/photo-1605276374104-de8862ffdb9f?w=800&q=80'); }
.prop-bg-5 { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=800&q=80'); }
.prop-bg-6 { background-image: url('https://images.unsplash.com/photo-1600047509807-ba8f99d2cd7a?w=800&q=80'); }

.prop-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 24, 16, 0.35) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.prop-frame { display: none; }

.prop-badge {
  position: absolute;
  top: 16px;
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-mid);
  color: var(--text-inverse);
  z-index: 2;
}

html[lang="ar"] .prop-badge { right: 16px; left: auto; }
html[lang="en"] .prop-badge { left: 16px; right: auto; }

.prop-badge.rent {
  background: var(--bg-dark);
  color: var(--gold-mid);
  border: 1px solid rgba(212, 175, 75, 0.35);
}

.prop-badge.inv {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  color: var(--text-inverse);
}

.prop-body {
  flex: 1;
  padding: 26px 24px 28px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
}

.prop-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 10px;
}

.prop-name {
  font-family: var(--fDis);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.prop-loc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.prop-divider {
  height: 1px;
  background: rgba(212, 175, 75, 0.22);
  margin: 18px 0 16px;
}

.prop-stats {
  display: flex;
  gap: 0;
  margin-top: auto;
}

.prop-stat {
  flex: 1;
  text-align: start;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.prop-stat + .prop-stat {
  border-inline-start: 1px solid rgba(212, 175, 75, 0.18);
  padding-inline-start: 20px;
  margin-inline-start: 20px;
}

.prop-stat strong {
  display: block;
  font-family: var(--fDis);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  text-transform: none;
}

.prop-stat span:not(strong) {
  display: block;
  color: var(--text-muted);
}

.prop-stat::after { display: none; }

.prop-visual-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.prop-visual-link:focus-visible {
  outline: 2px solid var(--gold-mid);
  outline-offset: 3px;
}

.prop-view-hint {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 24, 16, 0.55);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.prop-visual-link:hover .prop-view-hint { opacity: 1; }

.prop-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.prop-name a:hover { color: var(--gold-light); }

.prop-inquire-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-mid);
  transition: color 0.25s;
}

.prop-inquire-link:hover { color: var(--gold-light); }

/* ── Property detail page ── */
.property-hero {
  position: relative;
  min-height: 52vh;
  margin-top: calc(-1 * var(--nav-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.property-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.property-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 24, 16, 0.95) 0%, rgba(5, 24, 16, 0.35) 55%, rgba(5, 24, 16, 0.5) 100%);
}

.property-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 24px) clamp(24px, 5vw, 48px) 48px;
}

.property-back {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}

.property-back:hover { color: var(--gold-light); }

.property-detail-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.property-spec {
  min-width: 100px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.property-spec strong {
  display: block;
  font-family: var(--fDis);
  font-size: 2rem;
  color: var(--gold-mid);
  line-height: 1;
  margin-bottom: 6px;
}

.property-spec span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.property-consultation-panel,
.property-inquiry-panel {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.property-consultation-title,
.property-inquiry-title {
  font-family: var(--fDis);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.property-consultation-sub,
.property-inquiry-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.property-consultation-form .form-group,
.property-inquiry-form .form-group { margin-bottom: 14px; }

.property-consultation-note,
.property-inquiry-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

.property-consultation-note a,
.property-inquiry-note a {
  color: var(--gold-mid);
  transition: color 0.25s;
}

.property-consultation-note a:hover,
.property-inquiry-note a:hover { color: var(--gold-light); }

.consultation-alert,
.inquiry-alert {
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid var(--border);
}

.consultation-alert--success,
.inquiry-alert--success {
  background: rgba(212, 175, 75, 0.12);
  border-color: rgba(212, 175, 75, 0.35);
  color: var(--gold-light);
}

.consultation-alert--error,
.inquiry-alert--error {
  background: rgba(180, 60, 60, 0.12);
  border-color: rgba(180, 60, 60, 0.35);
  color: #f0b0b0;
}

.consultation-alert ul,
.inquiry-alert ul { margin: 0; padding-inline-start: 18px; }

.form-submit--gold {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
  color: var(--bg-deep);
  font-weight: 600;
}

.form-submit--gold:hover {
  filter: brightness(1.08);
}

.property-related-section {
  padding-top: 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.property-related-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.property-related-grid {
  margin-top: 0;
}

.property-cross-section {
  margin-top: 0;
  padding-top: 48px;
}

@media (min-width: 901px) and (max-width: 1100px) {
  .prop-grid { grid-template-columns: repeat(2, 1fr); }
}

.property-related-all {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.svc-card {
  padding: 36px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: start;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.svc-card--align-left { text-align: left; }
.svc-card--align-center { text-align: center; }
.svc-card--align-right { text-align: right; }
.svc-card--align-justify { text-align: justify; }

.svc-card--align-left .svc-icon,
.svc-card--align-left .svc-icon--img {
  margin-inline: 0;
  margin-bottom: 20px;
}

.svc-card--align-center .svc-icon,
.svc-card--align-center .svc-icon--img {
  margin-inline: auto;
  margin-bottom: 20px;
}

.svc-card--align-right .svc-icon,
.svc-card--align-right .svc-icon--img {
  margin-inline: 0 0;
  margin-inline-start: auto;
  margin-bottom: 20px;
}

.svc-card::after { display: none; }

.svc-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.svc-icon {
  width: var(--svc-icon-size, 48px);
  height: var(--svc-icon-size, 48px);
  margin: 0 auto 20px;
  border: 1px solid var(--border);
  font-size: calc(var(--svc-icon-size, 48px) * 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border-radius: 50%;
  color: var(--gold-mid);
}

.svc-icon::before { display: none; }

.svc-icon--img {
  width: auto;
  max-width: 100%;
  height: var(--svc-icon-size, 160px);
  margin: 0 auto 20px;
  padding: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  border: none;
  background: transparent;
  display: block;
}

.svc-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-transform: none;
}

.svc-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.blog-back__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-mid);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.blog-back__link:hover {
  color: var(--gold-light);
}

.blog-back__icon {
  font-size: 17px;
  line-height: 1;
}

.blog-page-hero {
  position: relative;
  padding-top: 8px;
  overflow: visible;
}

.blog-article__divider {
  width: min(300px, 72%);
  height: 1px;
  margin: 0 0 22px;
  background: linear-gradient(90deg, var(--gold-mid) 0%, rgba(197, 160, 89, 0.15) 72%, transparent 100%);
}

html[dir="rtl"] .blog-article__divider {
  background: linear-gradient(270deg, var(--gold-mid) 0%, rgba(197, 160, 89, 0.15) 72%, transparent 100%);
}

.blog-article__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-article__date-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

/* ── Blog index & cards ── */
.blog-index__intro {
  max-width: 560px;
  margin-top: 12px;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.blog-categories__link {
  display: inline-flex;
  padding: 8px 16px;
  border: 1px solid rgba(212, 175, 75, 0.22);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.blog-categories__link:hover,
.blog-categories__link.is-active {
  border-color: rgba(212, 175, 75, 0.45);
  color: var(--gold-light);
  background: rgba(212, 175, 75, 0.08);
}

.blog-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

a.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.blog-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

a.blog-card:focus-visible {
  outline: 2px solid var(--gold-mid);
  outline-offset: 3px;
}

.blog-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.blog-card__meta,
.blog-card__date {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card__category {
  color: var(--gold-mid);
}

.blog-card__title {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.35;
}

.blog-card__excerpt {
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__cta {
  margin-top: auto;
  color: var(--gold-mid);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

a.blog-card:hover .blog-card__cta {
  color: var(--gold-light);
}

.blog-empty,
.blog-pagination {
  margin-top: 24px;
}

.blog-back a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-mid);
  text-decoration: none;
  font-size: 14px;
}

.blog-back a:hover {
  color: var(--gold-light);
}

.blog-back--inline {
  margin-bottom: 16px;
}

/* ── Blog article page ── */
.blog-article {
  padding-bottom: clamp(48px, 8vw, 88px);
}

.blog-article__back {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 16px) clamp(24px, 5vw, 48px) 8px;
}

.blog-article__back--overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: none;
  margin: 0;
  padding: calc(var(--nav-h) + 16px) clamp(24px, 5vw, 48px) 0;
  pointer-events: none;
}

.blog-article__back--overlay .blog-back__link {
  pointer-events: auto;
  color: var(--gold-light);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65);
}

.blog-article__back--overlay .blog-back__link:hover {
  color: #fff;
}

.blog-article__hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8px clamp(24px, 5vw, 48px) clamp(28px, 4vw, 40px);
}

.blog-article__hero--has-media {
  max-width: none;
  padding: 0;
}

.blog-article--has-cover .blog-article__hero--has-media {
  padding-bottom: clamp(28px, 4vw, 40px);
}

.blog-article__hero-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.blog-article--has-cover .blog-article__hero-media {
  margin-bottom: clamp(28px, 4vw, 40px);
  min-height: clamp(300px, 48vh, 520px);
}

.blog-article__hero-media img {
  display: block;
  width: 100%;
  height: clamp(240px, 42vh, 480px);
  object-fit: cover;
}

.blog-article--has-cover .blog-article__hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-article__hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 14, 26, 0.55) 0%, rgba(6, 14, 26, 0.2) 38%, rgba(6, 14, 26, 0.72) 100%);
  pointer-events: none;
}

.blog-article__hero-content {
  max-width: 780px;
  margin: 0 auto;
  padding-inline: clamp(24px, 5vw, 48px);
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.blog-article__category {
  display: inline-flex;
  padding: 5px 12px;
  border: 1px solid rgba(212, 175, 75, 0.28);
  border-radius: 999px;
  color: var(--gold-mid);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.blog-article__category:hover {
  color: var(--gold-light);
  border-color: rgba(212, 175, 75, 0.45);
}

.blog-article__title {
  font-family: var(--fDis);
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}

.blog-article__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0;
  padding-inline-start: 18px;
  border-inline-start: 2px solid var(--gold-mid);
}

.blog-article__body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 36px);
  background: rgba(10, 22, 40, 0.42);
  border: 1px solid rgba(212, 175, 75, 0.14);
  border-radius: 4px;
}

.blog-article__heading {
  font-family: var(--fDis);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 36px 0 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 75, 0.12);
  color: var(--text);
}

.blog-article__heading:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.blog-article__text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  margin: 0 0 18px;
}

.blog-article__text:last-child {
  margin-bottom: 0;
}

.blog-article__footer {
  max-width: 720px;
  margin: 32px auto 0;
  padding-inline: clamp(24px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 640px) {
  .blog-article__footer {
    flex-direction: column;
  }

  .blog-article__footer .btn-gold,
  .blog-article__footer .btn-outline {
    justify-content: center;
    width: 100%;
  }
}

/* ── Partners ── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.partner-card {
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow 0.3s;
}

.partner-card::after { display: none; }

.partner-card:hover { box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06); }

.partner-logo {
  width: 100%;
  height: clamp(120px, 16vw, 168px);
  margin-bottom: 22px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.partner-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.partner-type { font-size: 13px; color: var(--text-soft); }

/* ── Founder ── */
.founder-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.founder-frame {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.founder-photo {
  aspect-ratio: 3/4;
  border: none;
  overflow: hidden;
}

.founder-photo::before,
.founder-photo::after { display: none; }

.founder-photo img {
  object-fit: cover;
  object-position: center top;
}

.founder-plate {
  position: absolute;
  bottom: 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 75, 0.35);
}

html[lang="ar"] .founder-plate { left: -16px; right: auto; }
html[lang="en"] .founder-plate { right: -16px; left: auto; }

.founder-plate-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-inverse);
}

.founder-plate-title { font-size: 12px; color: rgba(5, 24, 16, 0.75); margin-top: 4px; }

.founder-quote-icon { display: none; }

.founder-quote {
  font-family: var(--fDis);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 24px;
}

html[lang="ar"] .founder-quote { font-style: normal; }

.founder-bio { font-size: 15px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }

.founder-traits { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }

.founder-trait {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.founder-trait-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.founder-trait-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-trait-sub { font-size: 13px; color: var(--text-soft); }

/* ── Careers ── */
.careers-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 72px);
}

.careers-badge {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 16px;
  background: var(--gold-glow);
  border: 1px solid var(--border-strong);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.careers-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 8px;
}

html[lang="en"] .careers-badge::before { margin-left: 0; margin-right: 8px; }

.jobs-list { display: flex; flex-direction: column; gap: 12px; }

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.job-card::before { display: none; }

.job-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.job-role {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.job-meta { display: flex; flex-wrap: wrap; gap: 12px; }

.job-tag { font-size: 13px; color: var(--text-soft); }

.job-tag::before { background: var(--accent); }

.job-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.job-card:hover .job-arrow {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  color: var(--text-inverse);
  border-color: transparent;
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-form-panel {
  position: static;
}

.contact-info__intro {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 36em;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: rgba(8, 18, 32, 0.55);
  border: 1px solid rgba(212, 175, 75, 0.16);
  transition: border-color 0.3s ease, box-shadow 0.35s ease;
}

.contact-card:hover {
  border-color: rgba(212, 175, 75, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.contact-card--wide {
  grid-column: 1 / -1;
}

.contact-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 75, 0.28);
  background: rgba(212, 175, 75, 0.06);
  color: var(--gold-light);
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

html[lang="ar"] .contact-card__body {
  align-items: flex-end;
  text-align: right;
}

.contact-card__label {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
  line-height: 1.3;
}

.contact-card__value {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  text-decoration: none;
}

a.contact-card__value:hover {
  color: var(--gold-light);
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

html[lang="ar"] .contact-hours {
  align-items: flex-end;
}

.contact-hours__days {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
}

.contact-hours__range {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0;
  direction: ltr;
  unicode-bidi: isolate;
}

html[lang="ar"] .contact-hours__range {
  justify-content: flex-end;
}

.contact-hours__time {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
  white-space: nowrap;
}

.contact-hours__sep {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.contact-card__value--ltr {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

html[lang="ar"] a.contact-card__value--ltr {
  align-self: flex-end;
  text-align: left;
}

.contact-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 75, 0.35);
  background: rgba(212, 175, 75, 0.08);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.contact-card__action:hover {
  background: rgba(212, 175, 75, 0.18);
  border-color: var(--gold-mid);
  color: #fff;
}

.contact-map-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px) clamp(72px, 10vw, 100px);
}

.contact-map-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-map-embed {
  aspect-ratio: 21/9;
  min-height: 280px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-dark);
}

.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-header .map-btn {
  margin-top: 0;
  padding: 12px 22px;
  border: 1px solid var(--border-strong);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.contact-map-header .map-btn:hover {
  background: rgba(212, 175, 75, 0.15);
  color: var(--text);
}

.c-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  margin-bottom: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.c-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.c-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.c-value { font-size: 15px; color: var(--text); }

a.c-value:hover { color: var(--accent); }

.contact-form-wrap {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.contact-form-wrap::before { display: none; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-textarea { min-height: 120px; resize: vertical; }

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid), var(--gold-light));
  color: var(--text-inverse);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: box-shadow 0.3s, transform 0.3s;
}

.form-submit::before { display: none; }
.form-submit:hover { box-shadow: 0 8px 28px rgba(212, 175, 75, 0.35); transform: translateY(-1px); }

.map-block {
  height: 420px;
  background: var(--bg-dark);
  position: relative;
  margin-top: 0;
  overflow: hidden;
}

.map-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--emerald, #0e2a20) 100%);
  opacity: 1;
}

.map-bg::before,
.map-bg::after { display: none; }

.map-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.map-title {
  font-family: var(--fDis);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.map-sub { color: rgba(255,255,255,0.7); }

.map-btn {
  margin-top: 16px;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-btn:hover { background: #fff; color: var(--text); }

.pin-icon { background: var(--accent); }

/* ── Footer ── */
footer {
  background: var(--bg-dark);
  color: var(--text-muted);
  padding: 72px clamp(24px, 5vw, 48px) 32px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-brand-name,
.footer-brand-sub { display: none; }

.footer-logo-full {
  height: clamp(64px, 10vw, 88px);
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left top;
  filter: drop-shadow(0 4px 20px rgba(212, 175, 75, 0.35));
}

html[lang="ar"] .footer-logo-full {
  object-position: right top;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 0;
  border: none;
}

.footer-col-title::after { display: none; }

.footer-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 0;
  display: block;
  transition: color 0.25s;
}

.footer-list a::before,
.footer-list a::after { display: none; }

.footer-list a:hover { color: #fff; }

.footer-newsletter input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
}

.footer-newsletter input::placeholder { color: rgba(255, 255, 255, 0.35); }

.footer-newsletter button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  color: var(--text-inverse);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-newsletter button::before { display: none; }

.footer-newsletter button:hover { box-shadow: 0 4px 20px rgba(212, 175, 75, 0.3); }

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 75, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.3s var(--ease);
}

.social-btn:hover {
  border-color: var(--gold-mid);
  background: rgba(212, 175, 75, 0.12);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.social-btn--pending {
  cursor: default;
}

.social-btn--pending:hover {
  transform: none;
  border-color: rgba(212, 175, 75, 0.28);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px clamp(24px, 5vw, 48px) 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(212, 175, 75, 0.12);
}

.footer-copy {
  margin: 0;
  flex: 1 1 280px;
  min-width: 0;
  font-size: 12px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.48);
  text-align: start;
}

.footer-mark {
  margin: 0;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 175, 75, 0.55);
  text-align: end;
}

html[lang="ar"] .footer-copy {
  font-family: var(--fBody), 'Noto Sans Arabic', sans-serif;
}

html[lang="en"] .footer-copy {
  font-family: var(--fBody), system-ui, sans-serif;
}

footer .footer-bottom[style] {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 28px !important;
  max-width: var(--max-w);
  margin: 0 auto;
}

footer .footer-bottom[style] .footer-copy,
footer .footer-bottom[style] .footer-mark {
  color: rgba(255, 255, 255, 0.4);
}

/* Simple footer on inner pages */
body:not(.has-full-footer) footer .footer-bottom[style] {
  background: var(--bg-dark);
  padding: 32px clamp(24px, 5vw, 48px) !important;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in { opacity: 1; transform: none; }

.page-hero,
.page-hero--has-media,
.lux-detail-hero,
.page-hero--off-plan,
.page-hero--ready {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.18s; }
.d4 { transition-delay: 0.24s; }

/* ── Back to top ── */
.back-top {
  position: fixed;
  bottom: 28px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  color: var(--text-inverse);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.35s var(--ease);
  z-index: 800;
}

html[lang="ar"] .back-top { left: 28px; }
html[lang="en"] .back-top { right: 28px; }

.back-top.show { opacity: 1; transform: none; }

.back-top:hover { background: var(--accent-dark); }

/* ── Page hero (inner) ── */
.page-hero {
  padding: calc(var(--nav-h) + 48px) clamp(24px, 5vw, 48px) 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

/* Founder section bg override */
.founder-section {
  background: var(--bg-elevated);
  max-width: none;
  padding-left: clamp(24px, 5vw, 48px);
  padding-right: clamp(24px, 5vw, 48px);
}

.founder-section .founder-layout {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Sales team roster ── */
.team-section {
  padding-top: 0;
}

.team-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
}

.team-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 175, 75, 0.18);
  background: var(--bg-elevated);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.45s var(--ease);
}

.team-card:hover {
  border-color: rgba(212, 175, 75, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.team-card__photo-wrap {
  aspect-ratio: 4 / 5;
  background: var(--navy-deep);
  overflow: hidden;
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card__photo--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(165deg, rgba(6, 14, 26, 0.9) 0%, rgba(14, 42, 32, 0.55) 100%),
    repeating-linear-gradient(
      -45deg,
      rgba(212, 175, 75, 0.04) 0,
      rgba(212, 175, 75, 0.04) 2px,
      transparent 2px,
      transparent 10px
    );
  border: 1px dashed rgba(212, 175, 75, 0.28);
  color: rgba(255, 255, 255, 0.55);
}

.team-card__placeholder-icon {
  color: rgba(212, 175, 75, 0.45);
}

.team-card__placeholder-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.team-card__placeholder-hint {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
}

.team-card__body {
  padding: clamp(18px, 3vw, 24px);
  border-top: 1px solid rgba(212, 175, 75, 0.12);
}

.team-card__name {
  margin: 0 0 6px;
  font-family: var(--fDis);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--t1);
  line-height: 1.2;
}

.team-card__role {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  #navbar {
    padding-inline: clamp(14px, 4vw, 24px);
    gap: 10px;
  }

  .nav-links,
  .nav-right .btn-gold { display: none !important; }

  .nav-cluster {
    gap: 8px;
    margin-inline-start: auto;
    flex-shrink: 0;
  }

  .nav-right { gap: 10px; }
  .hamburger { display: flex; }

  .mobile-nav:not(.open) {
    visibility: hidden;
    pointer-events: none;
  }

  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .about-layout,
  .founder-layout,
  .careers-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-map-embed { aspect-ratio: 4/3; min-height: 240px; }

  .prop-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .property-detail-layout { grid-template-columns: 1fr; }
  .property-consultation-panel,
  .property-inquiry-panel { position: static; }
}

@media (max-width: 600px) {
  :root { --nav-h: 68px; }
  .services-grid,
  .partners-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-gold,
  .hero-actions .btn-outline { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 28px;
  }

  html[lang="ar"] .footer-bottom {
    align-items: flex-end;
  }

  .footer-copy,
  .footer-mark {
    flex: none;
    width: 100%;
    text-align: inherit;
  }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── Company information (contact page) ── */
.company-information {
  padding-top: 0;
}

.company-information__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  margin: 0;
}

.company-information__item {
  padding: clamp(18px, 3vw, 24px);
  background: rgba(14, 42, 32, 0.55);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.company-information__item--activities,
.company-information__item--address,
.company-information__item--date_range {
  grid-column: 1 / -1;
}

.company-information__label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.company-information__value {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

.company-information__link {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.company-information__link:hover {
  color: var(--gold);
}

.company-information__dates p {
  margin: 0 0 6px;
}

.company-information__dates p:last-child {
  margin-bottom: 0;
}

.company-information__date-label {
  display: inline-block;
  min-width: 7.5rem;
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 720px) {
  .company-information__grid {
    grid-template-columns: 1fr;
  }
}
