@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Manrope:wght@400;500;600;700&family=Noto+Serif+Arabic:wght@400;500;600&display=swap');

:root {
  --ink: #151613;
  --ink-soft: #44453f;
  --paper: #f3f0e9;
  --paper-2: #eae5da;
  --white: #fbfaf7;
  --gold: #b8a275;
  --gold-dark: #8d7b57;
  --line: rgba(21,22,19,.14);
  --shadow: 0 24px 60px rgba(18,18,15,.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: min(1440px, calc(100vw - 72px));
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', Arial, sans-serif;
  --arabic: 'Alexandria', Tahoma, sans-serif;
  --arabic-display: 'Noto Serif Arabic', 'Alexandria', Tahoma, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html[lang="ar"] body { font-family: var(--arabic); }
html[lang="ar"] body { font-weight: 400; letter-spacing: 0; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { text-wrap: balance; }
html[lang="ar"] .nav-link, html[lang="ar"] .btn, html[lang="ar"] button { letter-spacing: 0; }
body.menu-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; width: 100%; }
::selection { background: var(--gold); color: var(--ink); }

.container { width: var(--container); margin-inline: auto; }
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .92;
}
html[lang="ar"] .display { font-family: var(--arabic-display); line-height: 1.25; letter-spacing: -.045em; font-weight: 400; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 700;
}
html[lang="ar"] .eyebrow { letter-spacing: 0; }
.eyebrow::before { content: ''; width: 32px; height: 1px; background: currentColor; opacity: .6; }
.muted { color: #6f706a; }
.gold { color: var(--gold-dark); }
.section { padding: 130px 0; position: relative; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(48px, 6vw, 92px); margin: 16px 0 0; max-width: 860px; }
.section-head p { max-width: 460px; color: #676862; line-height: 1.9; margin: 0; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
  transition: background .35s, color .35s, transform .35s, box-shadow .35s;
}
.topbar.scrolled, .topbar.light-nav {
  background: rgba(243,240,233,.92);
  color: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.nav {
  width: var(--container);
  height: 84px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-side { display: flex; align-items: center; gap: 28px; }
.nav-side:last-child { justify-content: flex-end; }
.nav-link { font-size: 12px; font-weight: 600; letter-spacing: .06em; opacity: .82; position: relative; }
.nav-link::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: currentColor; transition: right .3s; }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.logo { text-align: center; min-width: 210px; }
.logo-mark { display: block; font-family: var(--serif); font-size: 32px; line-height: 1; letter-spacing: .22em; margin-right: -.22em; }
html[lang="ar"] .logo-mark { font-family: var(--serif); }
.logo-sub { display: block; font-size: 8px; letter-spacing: .35em; text-transform: uppercase; margin-top: 7px; opacity: .7; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid currentColor; background: transparent; cursor: pointer; transition: .25s;
}
.icon-btn:hover { background: currentColor; color: var(--paper); transform: translateY(-2px); }
.icon-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.lang-btn { border: 0; background: none; cursor: pointer; font-size: 12px; font-weight: 700; padding: 8px; }
.menu-btn { display: none; }
.fav-count { position: absolute; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 10px; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-size: 9px; transform: translate(12px,-12px); }

.hero {
  min-height: 100svh;
  color: #fff;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #24251f;
}
.hero-media { position: absolute; inset: 0; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,13,11,.22), rgba(12,13,11,.06) 35%, rgba(12,13,11,.76)); }
.hero-media img { height: 100%; object-fit: cover; animation: heroZoom 14s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-content { position: relative; z-index: 2; padding: 170px 0 54px; }
.hero-kicker { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; opacity: .9; }
.hero-kicker .coordinates { font-size: 10px; letter-spacing: .15em; }
.hero-title { font-size: clamp(72px, 10.4vw, 170px); max-width: 1200px; margin: 0 0 34px; }
.hero-title em { display: block; font-style: italic; margin-inline-start: 11vw; font-weight: 400; }
html[lang="ar"] .hero-title em { font-style: normal; margin-inline-start: 0; color: #ded3ba; }
.hero-bottom { display: grid; grid-template-columns: 1fr minmax(520px, 760px); gap: 50px; align-items: end; }
.hero-copy { max-width: 440px; line-height: 1.85; font-size: 14px; opacity: .86; }
.hero-search {
  background: rgba(250,249,245,.97);
  color: var(--ink);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 25px 75px rgba(8,9,7,.24);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.72);
}
.finder-head {
  min-height: 58px;
  padding: 5px 8px 12px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.finder-head > div { display: grid; gap: 3px; }
.finder-kicker { color: var(--gold-dark); font-size: 8px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.finder-head strong { font-family: var(--serif); font-size: 23px; font-weight: 500; line-height: 1.05; }
html[lang="ar"] .finder-head strong { font-family: var(--arabic-display); font-size: 18px; }
.finder-note { color: #85867e; font-size: 8px; letter-spacing: .06em; white-space: nowrap; }
.finder-controls { display: grid; grid-template-columns: 1.08fr 1fr 1fr minmax(168px,.82fr); gap: 8px; padding-top: 10px; }
.search-field {
  min-width: 0;
  min-height: 68px;
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #efede7;
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  transition: border-color .25s, background .25s, transform .25s;
}
.search-field:hover, .search-field:focus-within { border-color: rgba(141,123,87,.42); background: #f6f4ef; transform: translateY(-1px); }
.search-icon { width: 31px; height: 31px; flex: 0 0 31px; display: grid; place-items: center; border-radius: 50%; background: rgba(184,162,117,.17); color: var(--gold-dark); }
.search-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.search-copy { min-width: 0; flex: 1; display: grid; gap: 2px; }
.search-label { color: #8a8a83; font-size: 8px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
html[lang="ar"] .search-label, html[lang="ar"] .finder-kicker { letter-spacing: 0; }
.select-shell { position: relative; display: block; min-width: 0; }
.select-shell select { appearance: none; -webkit-appearance: none; border: 0; background: transparent; width: 100%; outline: 0; color: var(--ink); font-weight: 650; font-size: 11px; padding: 3px 22px 3px 0; cursor: pointer; white-space: nowrap; text-overflow: ellipsis; }
html[dir="rtl"] .select-shell select { padding: 3px 0 3px 22px; }
.select-shell svg { position: absolute; top: 50%; right: 0; width: 14px; height: 14px; transform: translateY(-50%); fill: none; stroke: #74756e; stroke-width: 1.6; pointer-events: none; }
html[dir="rtl"] .select-shell svg { right: auto; left: 0; }
.search-submit {
  min-height: 68px;
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 0 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  transition: transform .25s, background .25s;
}
.search-submit span { display: grid; text-align: start; line-height: 1.08; }
.search-submit small { color: rgba(255,255,255,.58); font-size: 7px; letter-spacing: .09em; text-transform: uppercase; }
.search-submit b { font-family: var(--serif); font-size: 18px; font-weight: 500; }
html[lang="ar"] .search-submit b { font-family: var(--arabic-display); font-size: 16px; }
.search-submit:hover { background: var(--gold-dark); transform: translateY(-2px); }

.hero-scroll { position: absolute; right: 22px; bottom: 48px; z-index: 2; writing-mode: vertical-rl; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; display: flex; align-items: center; gap: 15px; }
.hero-scroll::after { content: ''; width: 1px; height: 46px; background: rgba(255,255,255,.5); }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.intro-copy h2 { font-size: clamp(58px, 7vw, 110px); margin: 16px 0 36px; }
.intro-copy p { max-width: 560px; color: #5f605b; line-height: 2; }
.intro-stats { margin-top: 54px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); padding-top: 24px; }
.stat strong { display: block; font-family: var(--serif); font-size: 44px; font-weight: 500; }
.stat span { display: block; color: #777871; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; margin-top: 5px; }
.intro-visual { position: relative; padding: 40px 70px 70px 0; }
.intro-visual img { height: 720px; object-fit: cover; border-radius: 2px; }
.intro-card { position: absolute; right: 0; bottom: 0; width: 230px; padding: 26px; background: var(--ink); color: white; }
.intro-card strong { font-family: var(--serif); font-size: 40px; font-weight: 500; display: block; }
.intro-card span { font-size: 10px; line-height: 1.6; opacity: .65; text-transform: uppercase; letter-spacing: .1em; }

.dark-section { background: var(--ink); color: #f4f0e7; }
.dark-section .section-head p { color: #aaa99f; }
.zone-tabs { display: grid; grid-template-columns: 1fr 1.6fr; gap: 70px; align-items: stretch; }
.zone-list { border-top: 1px solid rgba(255,255,255,.16); }
.zone-tab { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.16); background: transparent; color: inherit; text-align: start; padding: 28px 0; cursor: pointer; display: grid; grid-template-columns: 42px 1fr auto; gap: 18px; align-items: center; opacity: .48; transition: .35s; }
.zone-tab:hover, .zone-tab.active { opacity: 1; padding-inline-start: 16px; }
.zone-tab small { font-size: 10px; }
.zone-tab strong { font-family: var(--serif); font-size: 34px; font-weight: 500; }
html[lang="ar"] .zone-tab strong { font-family: var(--arabic-display); font-size: 25px; }
.zone-tab svg { width: 18px; fill: none; stroke: currentColor; }
.masterplan { background: #22231f; border: 1px solid rgba(255,255,255,.12); min-height: 620px; position: relative; overflow: hidden; border-radius: 6px; }
.masterplan::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%, rgba(184,162,117,.12), transparent 48%); }
.masterplan svg { position: absolute; inset: 5%; width: 90%; height: 90%; }
.plan-zone { cursor: pointer; transition: .35s; fill: rgba(255,255,255,.05); stroke: rgba(255,255,255,.34); stroke-width: 1.2; }
.plan-zone:hover, .plan-zone.active { fill: rgba(184,162,117,.28); stroke: #cdbb95; filter: drop-shadow(0 0 18px rgba(184,162,117,.2)); }
.plan-label { fill: #f5f0e5; font-size: 12px; letter-spacing: .12em; pointer-events: none; }
.plan-water { fill: rgba(147,173,170,.18); stroke: rgba(170,196,192,.34); }
.plan-road { fill: none; stroke: rgba(255,255,255,.14); stroke-width: 8; }
.plan-road-line { fill: none; stroke: rgba(255,255,255,.2); stroke-width: .8; stroke-dasharray: 7 9; }
.zone-preview { position: absolute; inset: auto 22px 22px; background: rgba(12,13,11,.82); backdrop-filter: blur(15px); padding: 26px; border: 1px solid rgba(255,255,255,.12); max-width: 420px; }
.zone-preview small { color: #b9a67e; text-transform: uppercase; letter-spacing: .15em; }
.zone-preview h3 { font-family: var(--serif); font-size: 38px; font-weight: 500; margin: 8px 0; }
html[lang="ar"] .zone-preview h3 { font-family: var(--arabic-display); font-size: 27px; }
.zone-preview p { color: #aaa99f; line-height: 1.8; font-size: 12px; margin: 0; }
.zone-preview a { margin-top: 18px; display: inline-flex; align-items: center; gap: 10px; font-size: 11px; color: #dbcaa8; }

.property-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 30px; }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { border: 1px solid var(--line); background: transparent; padding: 12px 18px; border-radius: 50px; cursor: pointer; font-size: 11px; transition: .25s; }
.pill:hover, .pill.active { background: var(--ink); color: white; border-color: var(--ink); }
.view-all { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.property-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 24px; }
.property-card { grid-column: span 4; background: var(--white); min-width: 0; transition: transform .35s, box-shadow .35s; position: relative; }
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.property-card:nth-child(1), .property-card:nth-child(5) { grid-column: span 8; }
.property-media { position: relative; height: 390px; overflow: hidden; background: #d8d3c9; }
.property-card:nth-child(1) .property-media, .property-card:nth-child(5) .property-media { height: 520px; }
.property-media img { height: 100%; object-fit: cover; transition: transform .6s; }
.property-card:hover .property-media img { transform: scale(1.035); }
.property-badge { position: absolute; top: 18px; left: 18px; background: rgba(250,249,245,.92); padding: 9px 12px; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
html[dir="rtl"] .property-badge { left: auto; right: 18px; }
.card-actions { position: absolute; top: 15px; right: 15px; display: flex; gap: 7px; }
html[dir="rtl"] .card-actions { right: auto; left: 15px; }
.card-action { width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(20,21,18,.72); color: #fff; display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(10px); transition: .25s; }
.card-action:hover, .card-action.active { background: var(--gold); color: var(--ink); }
.card-action svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.property-info { padding: 24px 24px 26px; }
.property-meta-top { display: flex; justify-content: space-between; gap: 20px; color: #777870; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.property-name { font-family: var(--serif); font-size: 34px; font-weight: 500; margin: 10px 0 16px; }
html[lang="ar"] .property-name { font-family: var(--arabic-display); font-size: 24px; }
.property-specs { display: flex; gap: 18px; flex-wrap: wrap; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #585951; font-size: 10px; }
.property-specs span { display: inline-flex; align-items: center; gap: 7px; }
.property-specs svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.property-price { margin-top: 18px; display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.property-price small { display: block; color: #888981; font-size: 9px; text-transform: uppercase; margin-bottom: 4px; }
.property-price strong { font-size: 16px; }
.card-link { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: .25s; }
.card-link:hover { background: var(--ink); color: #fff; }
.card-link svg { width: 17px; fill: none; stroke: currentColor; }
.empty-state { grid-column: 1 / -1; padding: 80px; border: 1px dashed var(--line); text-align: center; }

.experience { min-height: 820px; display: flex; align-items: end; position: relative; color: #fff; overflow: hidden; }
.experience img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.experience::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,15,12,.12), rgba(14,15,12,.78)); }
.experience .container { position: relative; z-index: 2; padding-bottom: 80px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; }
.experience h2 { font-size: clamp(68px, 9vw, 140px); margin: 18px 0 0; max-width: 900px; }
.experience-copy { border-inline-start: 1px solid rgba(255,255,255,.45); padding-inline-start: 32px; }
.experience-copy p { line-height: 1.9; opacity: .78; }

.calculator-shell { display: grid; grid-template-columns: 1.1fr .9fr; background: var(--white); box-shadow: var(--shadow); }
.calculator-panel { padding: 64px; }
.calculator-panel h2 { font-size: clamp(50px, 5vw, 82px); margin: 18px 0 25px; }
.calc-field { margin: 30px 0; }
.calc-field label { display: flex; justify-content: space-between; gap: 20px; font-size: 11px; margin-bottom: 14px; color: #5f605a; }
.calc-field label strong { color: var(--ink); }
input[type="range"] { width: 100%; accent-color: var(--ink); }
.calc-result { background: var(--ink); color: #fff; padding: 64px; display: flex; flex-direction: column; justify-content: space-between; }
.calc-result small { text-transform: uppercase; letter-spacing: .16em; color: #aaa99f; }
.calc-result strong { display: block; font-family: var(--serif); font-size: clamp(54px,6vw,92px); font-weight: 500; margin: 12px 0 4px; line-height: 1; }
.calc-result .monthly-label { color: #c9b992; }
.calc-breakdown { border-top: 1px solid rgba(255,255,255,.16); margin-top: 36px; }
.calc-row { display: flex; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 11px; }
.btn { border: 1px solid var(--ink); background: var(--ink); color: #fff; min-height: 52px; padding: 0 24px; display: inline-flex; justify-content: center; align-items: center; gap: 12px; cursor: pointer; transition: .3s; font-size: 11px; font-weight: 700; letter-spacing: .05em; }
.btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-outline { background: transparent; color: inherit; border-color: currentColor; }
.btn-full { width: 100%; }

.journal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.journal-card { border-top: 1px solid var(--line); padding-top: 18px; }
.journal-card img { height: 360px; object-fit: cover; margin: 18px 0 22px; }
.journal-card small { color: #7a7b74; text-transform: uppercase; letter-spacing: .12em; }
.journal-card h3 { font-family: var(--serif); font-size: 32px; font-weight: 500; margin: 0; line-height: 1.08; }
html[lang="ar"] .journal-card h3 { font-family: var(--arabic-display); font-size: 23px; line-height: 1.6; }

.newsletter { background: #d9d0bd; padding: 95px 0; }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.newsletter h2 { font-size: clamp(56px,7vw,100px); margin: 15px 0 0; }
.newsletter p { line-height: 1.85; max-width: 500px; }
.inline-form { display: flex; border-bottom: 1px solid var(--ink); margin-top: 30px; }
.inline-form input { flex: 1; border: 0; background: transparent; padding: 18px 0; outline: 0; }
.inline-form button { border: 0; background: transparent; cursor: pointer; font-weight: 700; }

.footer { background: #11120f; color: #eee9df; padding: 80px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.3fr repeat(3,.7fr); gap: 70px; padding-bottom: 70px; }
.footer-brand .logo-mark { text-align: start; font-size: 44px; }
.footer-brand p { max-width: 360px; color: #8f9088; line-height: 1.8; margin-top: 26px; }
.footer h4 { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: #8f9088; margin: 0 0 22px; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin: 0 0 14px; font-size: 12px; }
.footer a { transition: color .2s; }
.footer a:hover { color: #d1bd91; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #71726b; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }

.page-hero { padding: 180px 0 80px; background: var(--paper-2); }
.page-hero h1 { font-size: clamp(74px,11vw,160px); margin: 25px 0 30px; }
.page-hero p { max-width: 640px; color: #66675f; line-height: 1.9; }
.listing-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
.filters { position: sticky; top: 108px; align-self: start; border-top: 1px solid var(--line); }
.filter-block { padding: 24px 0; border-bottom: 1px solid var(--line); }
.filter-block h3 { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 18px; }
.filter-options { display: grid; gap: 12px; }
.check { display: flex; gap: 10px; align-items: center; font-size: 12px; color: #575851; cursor: pointer; }
.check input { accent-color: var(--ink); }
.listing-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.listing-head span { font-size: 11px; color: #77786f; }
.sort-select { background: transparent; border: 1px solid var(--line); padding: 12px 16px; font-size: 11px; }
.listing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.listing-grid .property-card { grid-column: auto !important; }
.listing-grid .property-media { height: 390px !important; }
.mobile-filter-btn { display: none; }

.property-page { padding: 130px 0 0; }
.property-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, 300px); gap: 8px; background: #d7d2c8; }
.property-gallery .gallery-main { grid-row: 1 / 3; }
.property-gallery img { height: 100%; object-fit: cover; }
.property-detail { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; padding: 70px 0 120px; }
.property-header h1 { font-size: clamp(62px,8vw,120px); margin: 14px 0 18px; }
.property-header p { color: #62635d; line-height: 1.9; max-width: 700px; }
.detail-specs { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 38px 0; }
.detail-spec { padding: 22px 15px; border-inline-end: 1px solid var(--line); }
.detail-spec:last-child { border: 0; }
.detail-spec small { display: block; color: #85867f; font-size: 9px; text-transform: uppercase; margin-bottom: 8px; }
.detail-spec strong { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.detail-section { margin-top: 55px; }
.detail-section h2 { font-family: var(--serif); font-size: 42px; font-weight: 500; margin-bottom: 18px; }
html[lang="ar"] .detail-section h2 { font-family: var(--arabic-display); font-size: 28px; }
.highlights { display: grid; grid-template-columns: 1fr 1fr; list-style: none; padding: 0; gap: 0 30px; }
.highlights li { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 12px; display: flex; gap: 12px; }
.highlights li::before { content: '—'; color: var(--gold-dark); }
.inquiry-card { position: sticky; top: 110px; align-self: start; background: var(--white); padding: 32px; box-shadow: var(--shadow); }
.inquiry-price small { color: #85867f; text-transform: uppercase; font-size: 9px; }
.inquiry-price strong { display: block; font-family: var(--serif); font-size: 44px; font-weight: 500; margin: 5px 0 25px; }
.form-grid { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 9px; color: #72736c; text-transform: uppercase; letter-spacing: .1em; }
.field input, .field select, .field textarea { width: 100%; background: transparent; border: 1px solid var(--line); padding: 14px; outline: 0; font-size: 12px; }
.field textarea { min-height: 90px; resize: vertical; }
.inquiry-card .privacy { font-size: 8px; color: #8a8b83; line-height: 1.6; margin-top: 12px; }
.floor-plan { background: #e8e3d9; min-height: 430px; display: grid; place-items: center; padding: 40px; }
.floor-plan svg { width: 100%; max-width: 700px; }

.about-hero { min-height: 90svh; position: relative; display: flex; align-items: end; color: white; }
.about-hero img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.about-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,9,.15), rgba(10,10,9,.8)); }
.about-hero .container { position: relative; z-index: 2; padding-bottom: 65px; }
.about-hero h1 { font-size: clamp(76px,12vw,170px); margin: 15px 0 0; }
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; }
.story-grid h2 { font-size: clamp(56px,7vw,102px); margin: 15px 0; }
.story-copy p { font-size: 16px; color: #5f6059; line-height: 2.1; margin-top: 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value-card { background: var(--paper); padding: 46px; min-height: 330px; }
.value-card .number { font-family: var(--serif); font-size: 52px; color: var(--gold-dark); }
.value-card h3 { font-family: var(--serif); font-size: 35px; font-weight: 500; margin: 40px 0 16px; }
html[lang="ar"] .value-card h3 { font-family: var(--arabic-display); font-size: 24px; }
.value-card p { color: #696a63; line-height: 1.9; font-size: 12px; }

.contact-page { padding: 180px 0 100px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.contact-copy h1 { font-size: clamp(72px,10vw,150px); margin: 16px 0 32px; }
.contact-lines { margin-top: 50px; border-top: 1px solid var(--line); }
.contact-line { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 110px 1fr; gap: 20px; font-size: 12px; }
.contact-line small { color: #85867d; text-transform: uppercase; font-size: 9px; }
.contact-form { background: var(--white); padding: 55px; box-shadow: var(--shadow); }
.contact-form h2 { font-family: var(--serif); font-size: 48px; font-weight: 500; margin: 0 0 30px; }
html[lang="ar"] .contact-form h2 { font-family: var(--arabic-display); font-size: 30px; }
.contact-form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--ink); color: white; transform: translateY(-100%); transition: .5s cubic-bezier(.77,0,.18,1); padding: 25px 26px; display: flex; flex-direction: column; }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-links { margin: auto 0; display: grid; gap: 10px; }
.mobile-menu-links a { font-family: var(--serif); font-size: 55px; line-height: 1; }
html[lang="ar"] .mobile-menu-links a { font-family: var(--arabic-display); font-size: 38px; }
.mobile-menu-foot { display: flex; justify-content: space-between; color: #85867e; font-size: 10px; }

.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%,100px); background: var(--ink); color: #fff; padding: 14px 20px; z-index: 400; box-shadow: var(--shadow); font-size: 11px; opacity: 0; transition: .35s; }
.toast.show { transform: translate(-50%,0); opacity: 1; }
.compare-dock { position: fixed; inset: auto 24px 24px; z-index: 90; background: var(--ink); color: #fff; padding: 14px 16px; box-shadow: var(--shadow); display: none; align-items: center; gap: 16px; }
.compare-dock.show { display: flex; }
.compare-dock span { font-size: 11px; }
.compare-dock button { border: 0; background: var(--gold); padding: 10px 14px; cursor: pointer; }

.presentation-toggle { position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 80; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(15,16,13,.55); color: #fff; backdrop-filter: blur(10px); cursor: pointer; display: grid; place-items: center; }
.presentation-toggle svg { width: 17px; fill: none; stroke: currentColor; }
.presentation-mode .topbar, .presentation-mode .footer, .presentation-mode .presentation-toggle, .presentation-mode .newsletter { display: none !important; }
.presentation-mode .hero { min-height: 100vh; }
.presentation-mode .hero-content { padding-top: 80px; }
.presentation-mode::after { content: 'ESC  TO  EXIT  PRESENTATION'; position: fixed; z-index: 500; right: 20px; top: 20px; color: white; background: rgba(0,0,0,.55); padding: 9px 12px; font-size: 8px; letter-spacing: .12em; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s, transform .8s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --container: min(100% - 40px, 1000px); }
  .nav-side .nav-link { display: none; }
  .menu-btn { display: grid; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-copy { display: none; }
  .intro-grid, .zone-tabs, .calculator-shell, .experience .container, .newsletter-grid, .property-detail, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-visual { width: 80%; margin-inline-start: auto; }
  .zone-tabs { gap: 35px; }
  .property-card, .property-card:nth-child(1), .property-card:nth-child(5) { grid-column: span 6; }
  .property-card:nth-child(n) .property-media { height: 420px; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .listing-layout { grid-template-columns: 1fr; }
  .filters { display: none; }
  .filters.open { display: block; position: fixed; inset: 0; z-index: 220; background: var(--paper); padding: 90px 25px 25px; overflow: auto; }
  .mobile-filter-btn { display: inline-flex; }
  .property-detail { gap: 45px; }
  .inquiry-card { position: static; }
  .contact-form { padding: 38px; }
}


@media (max-width: 1100px) and (min-width: 721px) {
  .hero-search { max-width: 860px; }
  .finder-controls { grid-template-columns: repeat(3,1fr); }
  .search-submit { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  :root { --container: calc(100vw - 32px); --radius-lg: 24px; }
  .section { padding: 90px 0; }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head p { margin-top: 25px; }
  .nav { height: 70px; grid-template-columns: 1fr auto 1fr; }
  .logo { min-width: 0; }
  .logo-mark { font-size: 23px; }
  .logo-sub { display: none; }
  .nav-side { gap: 8px; }
  .nav-side .lang-btn { display: none; }
  .hero { min-height: 870px; }
  .hero-content { padding: 150px 0 28px; }
  .hero-kicker { align-items: end; }
  .hero-kicker .coordinates { display: none; }
  .hero-title { font-size: clamp(58px,19vw,94px); margin-bottom: 46px; }
  .hero-title em { margin-inline-start: 0; }
  .hero-search { padding: 9px; border-radius: 19px; }
  .finder-head { min-height: 52px; align-items: center; padding: 4px 5px 10px; }
  .finder-head strong { font-size: 18px; }
  .finder-note { display: none; }
  .finder-controls { grid-template-columns: 1fr 1fr; gap: 7px; padding-top: 8px; }
  .search-field { min-height: 62px; padding: 9px 10px; }
  .search-field:nth-child(3) { grid-column: 1 / -1; }
  .search-submit { min-height: 60px; grid-column: 1 / -1; padding-inline: 18px; }
  .search-submit span { display: flex; gap: 6px; align-items: baseline; }
  .search-submit b { font-size: 17px; }
  .hero-scroll { display: none; }
  .intro-copy h2 { font-size: 58px; }
  .intro-stats { gap: 12px; }
  .stat strong { font-size: 34px; }
  .intro-visual { width: 100%; padding: 0 25px 45px 0; }
  .intro-visual img { height: 520px; }
  .intro-card { width: 185px; padding: 20px; }
  .zone-tab { grid-template-columns: 30px 1fr auto; }
  .masterplan { min-height: 520px; }
  .zone-preview { inset: auto 10px 10px; }
  .property-toolbar { align-items: flex-start; flex-direction: column; }
  .property-grid { display: grid; grid-template-columns: 1fr; }
  .property-card, .property-card:nth-child(n) { grid-column: 1 / -1; }
  .property-card:nth-child(n) .property-media { height: 390px; }
  .experience { min-height: 720px; }
  .experience .container { gap: 35px; padding-bottom: 45px; }
  .experience h2 { font-size: 68px; }
  .calculator-panel, .calc-result { padding: 36px 24px; }
  .calc-result strong { font-size: 58px; }
  .journal-grid, .values-grid { grid-template-columns: 1fr; }
  .journal-card img { height: 420px; }
  .newsletter { padding: 70px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .page-hero { padding: 135px 0 65px; }
  .page-hero h1 { font-size: 78px; }
  .listing-grid { grid-template-columns: 1fr; }
  .listing-grid .property-media { height: 390px !important; }
  .property-page { padding-top: 78px; }
  .property-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 190px; }
  .property-gallery .gallery-main { grid-column: 1 / -1; grid-row: auto; }
  .property-gallery .gallery-extra:last-child { display: none; }
  .property-detail { padding: 45px 0 90px; }
  .detail-specs { grid-template-columns: 1fr 1fr; }
  .detail-spec:nth-child(2) { border-inline-end: 0; }
  .detail-spec:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .highlights { grid-template-columns: 1fr; }
  .about-hero { min-height: 780px; }
  .about-hero h1 { font-size: 82px; }
  .contact-page { padding-top: 130px; }
  .contact-copy h1 { font-size: 78px; }
  .contact-form .two { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .presentation-toggle { display: none; }
}

/* Graceful visual fallback when a remote architectural image is unavailable. */
.image-fallback {
  position: relative;
  background:
    linear-gradient(145deg, rgba(184,162,117,.22), transparent 45%),
    linear-gradient(30deg, #1b1c18, #444137 58%, #d2c5a7);
  overflow: hidden;
}
.image-fallback > img,
.image-fallback > a > img { display: none !important; }
.image-fallback::before {
  content: 'AURELIA';
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%,-50%);
  color: rgba(255,255,255,.7);
  font-family: Georgia, serif;
  letter-spacing: .28em;
  font-size: clamp(18px,3vw,42px);
  z-index: 1;
}
.filters #closeFilters { display: none; }
@media (max-width:1100px) {
  .filters.open #closeFilters { display: flex; }
}
