/* =========================
       Design system
    ========================= */
    :root {
      --ink: #17201b;
      --ink-2: #24312a;
      --forest: #14221c;
      --forest-2: #1c3027;
      --sage: #8c9d90;
      --sand: #d5b47f;
      --sand-light: #ead7b6;
      --cream: #f5f0e7;
      --paper: #fbf9f4;
      --white: #ffffff;
      --line: rgba(23, 32, 27, 0.13);
      --line-light: rgba(255, 255, 255, 0.16);
      --muted: #68736c;
      --muted-light: #bac5be;
      --danger: #b74a42;

      --shadow-sm: 0 14px 40px rgba(25, 34, 29, 0.08);
      --shadow-lg: 0 28px 90px rgba(15, 27, 21, 0.16);

      --radius-sm: 14px;
      --radius-md: 24px;
      --radius-lg: 38px;
      --radius-xl: 54px;

      --container: 1240px;
      --nav-height: 88px;

      --font-ar: "Noto Kufi Arabic", sans-serif;
      --font-en: "DM Sans", sans-serif;
      --font-serif: "Playfair Display", serif;

      --ease: cubic-bezier(.22, .8, .28, 1);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      background: var(--paper);
    }

    body {
      margin: 0;
      overflow-x: hidden;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--font-ar);
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    html[lang="en"] body {
      font-family: var(--font-en);
      line-height: 1.65;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    button {
      border: 0;
    }

    ::selection {
      background: var(--sand);
      color: var(--forest);
    }

    :focus-visible {
      outline: 3px solid rgba(213, 180, 127, 0.72);
      outline-offset: 4px;
    }

    .container {
      width: min(calc(100% - 48px), var(--container));
      margin-inline: auto;
    }

    .section {
      padding: 112px 0;
      position: relative;
    }

    .section-dark {
      background: var(--forest);
      color: var(--white);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      color: #8e7048;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    html[lang="ar"] .eyebrow {
      letter-spacing: 0;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 1px;
      background: currentColor;
    }

    .section-dark .eyebrow {
      color: var(--sand-light);
    }

    .section-title {
      margin: 0;
      max-width: 850px;
      font-size: clamp(2.15rem, 4.6vw, 5.3rem);
      line-height: 1.08;
      letter-spacing: -.055em;
      font-weight: 500;
    }

    html[lang="ar"] .section-title {
      letter-spacing: -.035em;
      line-height: 1.42;
      font-size: clamp(2rem, 4vw, 4.55rem);
    }

    .serif {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 500;
      color: #917347;
    }

    html[lang="ar"] .serif {
      font-family: inherit;
      font-style: normal;
      color: #917347;
    }

    .section-dark .serif {
      color: var(--sand-light);
    }

    .section-copy {
      max-width: 620px;
      margin: 24px 0 0;
      color: var(--muted);
      font-size: 1.03rem;
    }

    .section-dark .section-copy {
      color: var(--muted-light);
    }

    .section-heading-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 42px;
      margin-bottom: 58px;
    }

    .section-heading-row .section-copy {
      margin: 0;
      max-width: 410px;
    }

    .btn {
      min-height: 54px;
      padding: 0 25px;
      border-radius: 100px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      cursor: pointer;
      font-weight: 700;
      font-size: .9rem;
      transition:
        background .35s var(--ease),
        color .35s var(--ease),
        border-color .35s var(--ease),
        transform .35s var(--ease),
        box-shadow .35s var(--ease);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--sand);
      color: #18231d;
      box-shadow: 0 12px 30px rgba(213, 180, 127, .16);
    }

    .btn-primary:hover {
      background: #e1c395;
      box-shadow: 0 17px 35px rgba(213, 180, 127, .23);
    }

    .btn-dark {
      color: var(--white);
      background: var(--forest);
    }

    .btn-dark:hover {
      background: #263a30;
    }

    .btn-outline {
      color: inherit;
      background: transparent;
      border: 1px solid var(--line);
    }

    .section-dark .btn-outline {
      border-color: rgba(255,255,255,.22);
    }

    .btn-outline:hover {
      border-color: rgba(23,32,27,.35);
      background: rgba(255,255,255,.55);
    }

    .section-dark .btn-outline:hover {
      border-color: rgba(255,255,255,.5);
      background: rgba(255,255,255,.08);
    }

    .arrow-icon {
      width: 17px;
      height: 17px;
      flex: 0 0 auto;
      transition: transform .3s var(--ease);
    }

    [dir="rtl"] .arrow-icon {
      transform: scaleX(-1);
    }

    .btn:hover .arrow-icon {
      transform: translateX(3px);
    }

    [dir="rtl"] .btn:hover .arrow-icon {
      transform: scaleX(-1) translateX(3px);
    }

    /* =========================
       Reveal system
    ========================= */
    [data-reveal] {
      opacity: 1;
      transform: none;
    }

    html.js [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition:
        opacity .8s var(--ease),
        transform .8s var(--ease);
    }

    html.js [data-reveal].revealed {
      opacity: 1;
      transform: none;
    }

    /* =========================
       Scroll progress
    ========================= */
    .scroll-progress {
      position: fixed;
      inset-inline-start: 0;
      top: 0;
      height: 3px;
      width: 0;
      background: linear-gradient(90deg, var(--sand), #f1d9ad);
      z-index: 9999;
      pointer-events: none;
    }

    /* =========================
       Navigation
    ========================= */
    .site-header {
      position: fixed;
      z-index: 1000;
      top: 0;
      inset-inline: 0;
      height: var(--nav-height);
      transition:
        background .35s ease,
        backdrop-filter .35s ease,
        box-shadow .35s ease,
        height .35s ease;
    }

    .site-header.scrolled {
      height: 76px;
      background: rgba(249, 247, 241, .9);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 1px 0 rgba(23,32,27,.08);
    }

    .nav {
      height: 100%;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
    }

    .brand {
      justify-self: start;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--white);
      z-index: 1002;
    }

    .site-header.scrolled .brand {
      color: var(--ink);
    }

    .brand-mark {
      width: 39px;
      height: 39px;
      border: 1px solid rgba(255,255,255,.5);
      border-radius: 50%;
      display: grid;
      place-items: center;
      position: relative;
    }

    .site-header.scrolled .brand-mark {
      border-color: rgba(23,32,27,.25);
    }

    .brand-mark svg {
      width: 20px;
      height: 20px;
    }

    .brand-copy {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .brand-name {
      font-family: var(--font-serif);
      font-size: 1.32rem;
      font-weight: 600;
      letter-spacing: .04em;
    }

    html[lang="ar"] .brand-name {
      font-family: var(--font-ar);
      font-size: 1.03rem;
      letter-spacing: 0;
    }

    .brand-subtitle {
      margin-top: 5px;
      font-size: .55rem;
      opacity: .67;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    html[lang="ar"] .brand-subtitle {
      letter-spacing: 0;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      color: rgba(255,255,255,.8);
      font-size: .82rem;
      font-weight: 600;
    }

    .site-header.scrolled .nav-links {
      color: #4f5b54;
    }

    .nav-link {
      position: relative;
      padding: 10px 0;
      transition: color .25s ease;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      bottom: 4px;
      inset-inline-start: 0;
      width: 0;
      height: 1px;
      background: var(--sand);
      transition: width .3s var(--ease);
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--white);
    }

    .site-header.scrolled .nav-link:hover,
    .site-header.scrolled .nav-link.active {
      color: var(--ink);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-actions {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 1002;
    }

    .lang-switch {
      height: 42px;
      padding: 0 14px;
      border-radius: 100px;
      cursor: pointer;
      border: 1px solid rgba(255,255,255,.28);
      color: var(--white);
      background: rgba(255,255,255,.07);
      backdrop-filter: blur(8px);
      transition: .3s ease;
      font-family: var(--font-en);
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .05em;
    }

    .site-header.scrolled .lang-switch {
      color: var(--ink);
      border-color: rgba(23,32,27,.16);
      background: rgba(255,255,255,.65);
    }

    .lang-switch:hover {
      background: var(--white);
      color: var(--forest);
    }

    .nav-cta {
      min-height: 42px;
      padding: 0 18px;
      font-size: .76rem;
      background: var(--sand);
      color: var(--forest);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      padding: 0;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.25);
      color: var(--white);
      cursor: pointer;
      position: relative;
    }

    .site-header.scrolled .menu-toggle {
      color: var(--ink);
      border-color: rgba(23,32,27,.2);
      background: rgba(255,255,255,.68);
    }

    .menu-toggle span {
      width: 17px;
      height: 1.5px;
      background: currentColor;
      position: absolute;
      left: 50%;
      top: 50%;
      transition: transform .3s ease, margin .3s ease;
    }

    .menu-toggle span:first-child {
      transform: translate(-50%, -50%);
      margin-top: -3px;
    }

    .menu-toggle span:last-child {
      transform: translate(-50%, -50%);
      margin-top: 4px;
    }

    .menu-toggle.open span:first-child {
      margin: 0;
      transform: translate(-50%, -50%) rotate(45deg);
    }

    .menu-toggle.open span:last-child {
      margin: 0;
      transform: translate(-50%, -50%) rotate(-45deg);
    }

    /* =========================
       Hero
    ========================= */
    .hero {
      min-height: 900px;
      height: 100svh;
      max-height: 1040px;
      position: relative;
      display: flex;
      align-items: flex-end;
      color: var(--white);
      background: var(--forest);
      overflow: hidden;
    }

    .hero-media {
      position: absolute;
      inset: 0;
    }

    .hero-media::before,
    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
    }

    .hero-media::before {
      background:
        linear-gradient(180deg, rgba(12, 24, 18, .35) 0%, rgba(12, 24, 18, .08) 26%, rgba(12, 24, 18, .5) 72%, rgba(12,24,18,.89) 100%),
        linear-gradient(90deg, rgba(10,23,17,.62) 0%, rgba(10,23,17,.1) 54%, rgba(10,23,17,.28) 100%);
    }

    [dir="rtl"] .hero-media::before {
      background:
        linear-gradient(180deg, rgba(12, 24, 18, .35) 0%, rgba(12, 24, 18, .08) 26%, rgba(12, 24, 18, .5) 72%, rgba(12,24,18,.89) 100%),
        linear-gradient(-90deg, rgba(10,23,17,.62) 0%, rgba(10,23,17,.1) 54%, rgba(10,23,17,.28) 100%);
    }

    .hero-media::after {
      opacity: .23;
      background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 74px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 74px);
      mask-image: linear-gradient(to bottom, transparent 0%, #000 55%);
    }

    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 53%;
      transform: scale(1.015);
      animation: heroZoom 16s ease-out both;
    }

    @keyframes heroZoom {
      from { transform: scale(1.08); }
      to { transform: scale(1.015); }
    }

    .hero-inner {
      position: relative;
      z-index: 4;
      width: 100%;
      padding: calc(var(--nav-height) + 65px) 0 68px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.55fr) minmax(310px, .65fr);
      gap: 64px;
      align-items: end;
    }

    .hero-kicker {
      display: flex;
      align-items: center;
      gap: 13px;
      color: rgba(255,255,255,.76);
      font-size: .73rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .18em;
      margin-bottom: 22px;
    }

    html[lang="ar"] .hero-kicker {
      letter-spacing: 0;
    }

    .hero-kicker::before {
      content: "";
      width: 35px;
      height: 1px;
      background: var(--sand);
    }

    .hero h1 {
      max-width: 900px;
      margin: 0;
      font-family: var(--font-serif);
      font-weight: 500;
      font-size: clamp(4.3rem, 7.4vw, 8.5rem);
      line-height: .88;
      letter-spacing: -.055em;
      text-wrap: balance;
    }

    html[lang="ar"] .hero h1 {
      font-family: var(--font-ar);
      font-size: clamp(3.15rem, 6.5vw, 7rem);
      line-height: 1.3;
      letter-spacing: -.06em;
      font-weight: 500;
    }

    .hero h1 em {
      color: var(--sand-light);
      font-weight: 500;
    }

    html[lang="ar"] .hero h1 em {
      font-style: normal;
    }

    .hero-sub {
      max-width: 650px;
      margin: 25px 0 0;
      color: rgba(255,255,255,.74);
      font-size: 1rem;
      line-height: 1.85;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 31px;
    }

    .hero-secondary {
      color: white;
      border-color: rgba(255,255,255,.28);
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(9px);
    }

    .hero-secondary:hover {
      color: white;
      border-color: rgba(255,255,255,.5);
      background: rgba(255,255,255,.11);
    }

    .hero-side {
      padding-inline-start: 34px;
      border-inline-start: 1px solid rgba(255,255,255,.2);
    }

    .hero-side-title {
      margin: 0 0 23px;
      color: rgba(255,255,255,.67);
      font-size: .76rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    html[lang="ar"] .hero-side-title {
      letter-spacing: 0;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px 18px;
    }

    .hero-stat-number {
      color: var(--sand-light);
      font-family: var(--font-serif);
      font-size: 2.25rem;
      line-height: 1;
      letter-spacing: -.03em;
    }

    html[lang="ar"] .hero-stat-number {
      font-family: var(--font-en);
    }

    .hero-stat-label {
      color: rgba(255,255,255,.61);
      margin-top: 7px;
      font-size: .72rem;
      line-height: 1.6;
    }

    .hero-scroll {
      position: absolute;
      z-index: 5;
      bottom: 70px;
      inset-inline-end: 35px;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      animation: floatDown 2.6s ease-in-out infinite;
    }

    @keyframes floatDown {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(7px); }
    }

    .hero-scroll svg {
      width: 17px;
    }

    /* Search ribbon */
    .search-ribbon {
      position: relative;
      z-index: 10;
      margin-top: -24px;
    }

    .search-panel {
      background: var(--cream);
      padding: 17px;
      border-radius: 22px;
      box-shadow: var(--shadow-lg);
      display: grid;
      grid-template-columns: 1.15fr .8fr .8fr auto;
      gap: 0;
      border: 1px solid rgba(255,255,255,.8);
    }

    .search-field {
      position: relative;
      min-height: 72px;
      padding: 9px 22px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-inline-end: 1px solid var(--line);
    }

    .search-field label {
      font-size: .66rem;
      font-weight: 700;
      color: #8e795d;
      margin-bottom: 3px;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    html[lang="ar"] .search-field label {
      letter-spacing: 0;
    }

    .search-field input,
    .search-field select {
      width: 100%;
      border: 0;
      outline: 0;
      padding: 0 18px 0 0;
      background: transparent;
      color: var(--ink);
      appearance: none;
      font-size: .91rem;
      font-weight: 600;
    }

    [dir="rtl"] .search-field input,
    [dir="rtl"] .search-field select {
      padding: 0 0 0 18px;
    }

    .search-field svg {
      position: absolute;
      inset-inline-end: 22px;
      bottom: 22px;
      width: 14px;
      pointer-events: none;
      color: #8b7760;
    }

    .search-button {
      min-width: 164px;
      margin-inline-start: 17px;
      border-radius: 14px;
    }

    /* =========================
       Intro / Manifesto
    ========================= */
    .intro {
      padding-top: 135px;
      padding-bottom: 118px;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 330px 1fr;
      gap: clamp(60px, 9vw, 150px);
      align-items: start;
    }

    .intro-aside {
      position: sticky;
      top: 120px;
    }

    .intro-index {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #8b7660;
      font-family: var(--font-en);
      font-size: .76rem;
      letter-spacing: .1em;
    }

    .intro-index::before {
      content: "";
      width: 27px;
      height: 1px;
      background: #9b856c;
    }

    .intro-aside p {
      margin: 29px 0 0;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.9;
    }

    .intro-heading {
      margin: 0;
      font-size: clamp(2.7rem, 5.3vw, 6rem);
      line-height: 1.12;
      font-weight: 500;
      letter-spacing: -.055em;
      max-width: 950px;
    }

    html[lang="ar"] .intro-heading {
      font-size: clamp(2.25rem, 4.4vw, 4.85rem);
      line-height: 1.5;
      letter-spacing: -.04em;
    }

    .intro-heading span {
      color: #a38862;
    }

    .intro-bottom {
      margin-top: 58px;
      padding-top: 34px;
      border-top: 1px solid var(--line);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 35px;
      align-items: start;
    }

    .intro-bottom p {
      max-width: 630px;
      margin: 0;
      color: var(--muted);
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: .83rem;
      padding-bottom: 4px;
      border-bottom: 1px solid #b49468;
    }

    /* =========================
       Properties
    ========================= */
    .properties-section {
      background: #efeadf;
      overflow: hidden;
    }

    .property-toolbar {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .property-filter {
      padding: 10px 15px;
      border-radius: 100px;
      color: var(--muted);
      background: transparent;
      border: 1px solid rgba(23,32,27,.14);
      cursor: pointer;
      font-size: .78rem;
      font-weight: 700;
      transition: .3s ease;
    }

    .property-filter:hover,
    .property-filter.active {
      color: white;
      background: var(--forest);
      border-color: var(--forest);
    }

    .property-grid {
      display: grid;
      grid-template-columns: 1.17fr .83fr;
      grid-template-rows: 350px 350px;
      gap: 18px;
    }

    .property-card {
      position: relative;
      min-width: 0;
      overflow: hidden;
      border-radius: 28px;
      background: var(--forest);
      isolation: isolate;
      transition: transform .45s var(--ease), opacity .35s ease;
    }

    .property-card:first-child {
      grid-row: 1 / 3;
    }

    .property-card.hidden {
      display: none;
    }

    .property-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s var(--ease);
    }

    .property-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to top, rgba(12,23,17,.88), rgba(12,23,17,.02) 65%);
      pointer-events: none;
    }

    .property-card:hover img {
      transform: scale(1.045);
    }

    .property-meta {
      position: absolute;
      z-index: 2;
      top: 22px;
      inset-inline: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .property-badge,
    .property-location-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 33px;
      padding: 0 12px;
      border-radius: 100px;
      color: white;
      background: rgba(20,34,28,.5);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.18);
      font-size: .66rem;
      font-weight: 700;
    }

    .property-badge {
      background: rgba(236,218,187,.9);
      color: #203027;
      border-color: transparent;
    }

    .property-content {
      position: absolute;
      z-index: 2;
      bottom: 0;
      inset-inline: 0;
      padding: 28px;
      color: white;
    }

    .property-card:first-child .property-content {
      padding: 36px;
    }

    .property-content h3 {
      margin: 0;
      font-family: var(--font-serif);
      font-size: 2rem;
      line-height: 1.15;
      font-weight: 500;
    }

    html[lang="ar"] .property-content h3 {
      font-family: var(--font-ar);
      font-size: 1.35rem;
      line-height: 1.7;
    }

    .property-card:first-child .property-content h3 {
      font-size: clamp(2.2rem, 3.3vw, 3.65rem);
    }

    html[lang="ar"] .property-card:first-child .property-content h3 {
      font-size: clamp(1.75rem, 2.8vw, 2.75rem);
    }

    .property-features {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 12px;
      color: rgba(255,255,255,.72);
      font-size: .72rem;
    }

    .property-feature {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .property-feature svg {
      width: 14px;
      height: 14px;
    }

    .property-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 20px;
    }

    .property-price {
      color: var(--sand-light);
      font-family: var(--font-en);
      font-weight: 600;
      font-size: 1.12rem;
    }

    .property-open {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      color: white;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      display: grid;
      place-items: center;
      transition: .3s ease;
    }

    .property-card:hover .property-open {
      background: var(--sand);
      border-color: var(--sand);
      color: var(--forest);
    }

    .property-open svg {
      width: 15px;
    }

    [dir="rtl"] .property-open svg {
      transform: scaleX(-1);
    }

    .property-extra {
      display: none;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin-top: 18px;
    }

    .property-extra.visible {
      display: grid;
    }

    .properties-footer {
      margin-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .properties-count {
      color: var(--muted);
      font-size: .8rem;
    }

    /* =========================
       Experience / Services
    ========================= */
    .experience-section {
      background: var(--forest);
      color: white;
      overflow: hidden;
    }

    .experience-section::before {
      content: "";
      position: absolute;
      width: 680px;
      height: 680px;
      top: -350px;
      inset-inline-end: -230px;
      border: 1px solid rgba(213,180,127,.12);
      border-radius: 50%;
      box-shadow:
        0 0 0 90px rgba(213,180,127,.018),
        0 0 0 180px rgba(213,180,127,.012);
    }

    .experience-grid {
      display: grid;
      grid-template-columns: .76fr 1.24fr;
      gap: 88px;
      align-items: center;
    }

    .experience-visual {
      position: relative;
      min-height: 670px;
    }

    .experience-image-main {
      width: 82%;
      height: 590px;
      object-fit: cover;
      border-radius: 280px 280px 28px 28px;
      position: absolute;
      top: 0;
      inset-inline-start: 0;
    }

    .experience-image-small {
      width: 48%;
      height: 295px;
      object-fit: cover;
      position: absolute;
      bottom: 0;
      inset-inline-end: 0;
      border-radius: 22px;
      border: 10px solid var(--forest);
      box-shadow: var(--shadow-lg);
    }

    .experience-badge {
      position: absolute;
      z-index: 2;
      top: 44%;
      inset-inline-end: 0;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: var(--sand);
      color: var(--forest);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 18px;
      transform: rotate(7deg);
    }

    .experience-badge strong {
      display: block;
      font-family: var(--font-en);
      font-size: 1.95rem;
      line-height: 1;
    }

    .experience-badge span {
      display: block;
      margin-top: 7px;
      font-size: .64rem;
      line-height: 1.5;
      font-weight: 700;
    }

    .experience-content .section-title {
      font-size: clamp(2.45rem, 4.3vw, 4.8rem);
    }

    html[lang="ar"] .experience-content .section-title {
      font-size: clamp(2rem, 3.75vw, 4rem);
    }

    .service-list {
      margin-top: 45px;
      border-top: 1px solid rgba(255,255,255,.13);
    }

    .service-item {
      display: grid;
      grid-template-columns: 48px 1fr auto;
      align-items: center;
      gap: 20px;
      min-height: 105px;
      border-bottom: 1px solid rgba(255,255,255,.13);
      transition: padding .35s var(--ease), background .35s ease;
    }

    .service-item:hover {
      padding-inline: 15px;
      background: rgba(255,255,255,.03);
    }

    .service-index {
      color: var(--sand);
      font-family: var(--font-en);
      font-size: .7rem;
    }

    .service-title {
      margin: 0;
      font-size: 1rem;
      font-weight: 600;
    }

    .service-description {
      margin: 5px 0 0;
      max-width: 520px;
      color: rgba(255,255,255,.55);
      font-size: .77rem;
    }

    .service-arrow {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.19);
      display: grid;
      place-items: center;
      color: var(--sand-light);
    }

    .service-arrow svg {
      width: 13px;
    }

    [dir="rtl"] .service-arrow svg {
      transform: scaleX(-1);
    }

    /* =========================
       Neighborhoods
    ========================= */
    .neighborhoods-section {
      background: var(--paper);
    }

    .neighborhoods-intro {
      display: grid;
      grid-template-columns: 1fr .52fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 58px;
    }

    .neighborhoods-intro .section-copy {
      margin: 0 0 10px;
    }

    .neighborhood-grid {
      display: grid;
      grid-template-columns: 1.05fr .9fr .75fr;
      gap: 14px;
      min-height: 600px;
    }

    .neighborhood-card {
      position: relative;
      overflow: hidden;
      min-height: 580px;
      border-radius: 220px 220px 26px 26px;
      background: var(--forest);
      transition: flex .5s var(--ease), transform .45s var(--ease);
    }

    .neighborhood-card:nth-child(2) {
      margin-top: 55px;
      min-height: 525px;
    }

    .neighborhood-card:nth-child(3) {
      margin-top: 110px;
      min-height: 470px;
    }

    .neighborhood-card img {
      height: 100%;
      object-fit: cover;
      transition: transform .8s var(--ease);
    }

    .neighborhood-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(16,30,23,.9), transparent 65%);
    }

    .neighborhood-card:hover {
      transform: translateY(-8px);
    }

    .neighborhood-card:hover img {
      transform: scale(1.05);
    }

    .neighborhood-content {
      position: absolute;
      z-index: 2;
      bottom: 0;
      inset-inline: 0;
      padding: 30px;
      color: white;
    }

    .neighborhood-number {
      color: var(--sand-light);
      font-family: var(--font-en);
      font-size: .68rem;
    }

    .neighborhood-content h3 {
      margin: 6px 0 5px;
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 500;
    }

    html[lang="ar"] .neighborhood-content h3 {
      font-family: var(--font-ar);
      font-size: 1.35rem;
    }

    .neighborhood-content p {
      margin: 0;
      color: rgba(255,255,255,.62);
      font-size: .74rem;
    }

    /* =========================
       Process
    ========================= */
    .process-section {
      padding-top: 100px;
      background: #efe8dc;
    }

    .process-grid {
      margin-top: 68px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      position: relative;
    }

    .process-grid::before {
      content: "";
      position: absolute;
      top: 27px;
      inset-inline: 6%;
      height: 1px;
      background: rgba(23,32,27,.16);
    }

    .process-step {
      position: relative;
      z-index: 1;
      padding-inline-end: 44px;
    }

    .process-dot {
      width: 55px;
      height: 55px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      margin-bottom: 28px;
      background: #efe8dc;
      border: 1px solid rgba(23,32,27,.24);
      color: #927653;
      font-family: var(--font-en);
      font-size: .72rem;
      transition: .35s ease;
    }

    .process-step:hover .process-dot {
      background: var(--forest);
      color: var(--sand-light);
      border-color: var(--forest);
      transform: scale(1.07);
    }

    .process-step h3 {
      margin: 0;
      font-size: 1rem;
    }

    .process-step p {
      margin: 11px 0 0;
      color: var(--muted);
      font-size: .78rem;
      line-height: 1.9;
    }

    /* =========================
       Testimonial editorial block
    ========================= */
    .testimonial-section {
      background: var(--paper);
    }

    .testimonial-wrap {
      display: grid;
      grid-template-columns: .68fr 1.32fr;
      gap: 70px;
      align-items: stretch;
    }

    .testimonial-photo {
      position: relative;
      min-height: 590px;
      overflow: hidden;
      border-radius: 24px;
    }

    .testimonial-photo img {
      height: 100%;
      object-fit: cover;
    }

    .testimonial-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15,26,20,.4), transparent 55%);
    }

    .testimonial-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 48px 0;
    }

    .quote-mark {
      font-family: Georgia, serif;
      color: #b29368;
      font-size: 5rem;
      line-height: .5;
      margin-bottom: 34px;
    }

    .quote {
      margin: 0;
      font-family: var(--font-serif);
      font-size: clamp(2.3rem, 4vw, 4.4rem);
      line-height: 1.15;
      letter-spacing: -.04em;
      font-weight: 500;
    }

    html[lang="ar"] .quote {
      font-family: var(--font-ar);
      font-size: clamp(1.8rem, 3.4vw, 3.6rem);
      line-height: 1.7;
      letter-spacing: -.03em;
    }

    .quote-person {
      margin-top: 42px;
      padding-top: 23px;
      border-top: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
    }

    .quote-person strong {
      display: block;
      font-size: .86rem;
    }

    .quote-person span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: .72rem;
    }

    .quote-controls {
      display: flex;
      gap: 8px;
    }

    .quote-control {
      width: 43px;
      height: 43px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: transparent;
      color: var(--ink);
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: .3s ease;
    }

    .quote-control:hover {
      color: white;
      background: var(--forest);
      border-color: var(--forest);
    }

    .quote-control svg {
      width: 14px;
    }

    [dir="rtl"] .quote-control svg {
      transform: scaleX(-1);
    }

    /* =========================
       Stats band
    ========================= */
    .stats-band {
      background: var(--forest);
      color: white;
      padding: 72px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat {
      min-width: 0;
      padding: 8px 38px;
      border-inline-end: 1px solid rgba(255,255,255,.13);
    }

    .stat:first-child {
      padding-inline-start: 0;
    }

    .stat:last-child {
      border: 0;
      padding-inline-end: 0;
    }

    .stat-number {
      color: var(--sand-light);
      font-family: var(--font-serif);
      font-size: clamp(3rem, 5vw, 5.4rem);
      line-height: .95;
      letter-spacing: -.04em;
    }

    html[lang="ar"] .stat-number {
      font-family: var(--font-en);
    }

    .stat-label {
      margin-top: 12px;
      color: rgba(255,255,255,.58);
      font-size: .72rem;
      line-height: 1.7;
    }

    /* =========================
       FAQ
    ========================= */
    .faq-section {
      background: #f4efe6;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: .65fr 1.35fr;
      gap: 100px;
      align-items: start;
    }

    .faq-side {
      position: sticky;
      top: 120px;
    }

    .faq-side .section-title {
      font-size: clamp(2.3rem, 4vw, 4.7rem);
    }

    html[lang="ar"] .faq-side .section-title {
      font-size: clamp(1.9rem, 3.4vw, 3.8rem);
    }

    .faq-list {
      border-top: 1px solid var(--line);
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
    }

    .faq-question {
      width: 100%;
      min-height: 94px;
      padding: 25px 4px;
      background: transparent;
      color: var(--ink);
      cursor: pointer;
      display: grid;
      grid-template-columns: 1fr 40px;
      gap: 20px;
      align-items: center;
      text-align: start;
      font-weight: 700;
      font-size: .92rem;
    }

    .faq-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--line);
      position: relative;
      transition: .3s ease;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: "";
      width: 12px;
      height: 1px;
      background: var(--ink);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: .3s ease;
    }

    .faq-icon::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq-question[aria-expanded="true"] .faq-icon {
      background: var(--forest);
      border-color: var(--forest);
    }

    .faq-question[aria-expanded="true"] .faq-icon::before,
    .faq-question[aria-expanded="true"] .faq-icon::after {
      background: white;
    }

    .faq-question[aria-expanded="true"] .faq-icon::after {
      transform: translate(-50%, -50%) rotate(0);
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .4s var(--ease);
    }

    .faq-answer > div {
      overflow: hidden;
    }

    .faq-item.open .faq-answer {
      grid-template-rows: 1fr;
    }

    .faq-answer p {
      margin: 0;
      padding: 0 58px 30px 4px;
      color: var(--muted);
      font-size: .83rem;
      max-width: 720px;
    }

    [dir="rtl"] .faq-answer p {
      padding: 0 4px 30px 58px;
    }

    /* =========================
       Contact
    ========================= */
    .contact-section {
      position: relative;
      overflow: hidden;
      background: #d7b784;
      color: var(--forest);
      padding: 105px 0 95px;
    }

    .contact-section::after {
      content: "D";
      position: absolute;
      inset-inline-end: -40px;
      bottom: -220px;
      color: rgba(255,255,255,.12);
      font-family: var(--font-serif);
      font-size: 42rem;
      line-height: 1;
      pointer-events: none;
    }

    html[lang="ar"] .contact-section::after {
      content: "د";
      font-family: var(--font-ar);
      font-size: 32rem;
      bottom: -140px;
    }

    .contact-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 100px;
      align-items: start;
    }

    .contact-title {
      margin: 0;
      font-size: clamp(3.2rem, 6vw, 6.8rem);
      font-weight: 500;
      line-height: 1;
      letter-spacing: -.055em;
    }

    html[lang="ar"] .contact-title {
      font-size: clamp(2.5rem, 5.2vw, 5.7rem);
      line-height: 1.4;
      letter-spacing: -.045em;
    }

    .contact-copy {
      max-width: 490px;
      margin: 25px 0 0;
      color: rgba(20,34,28,.7);
      font-size: .91rem;
    }

    .contact-details {
      margin-top: 44px;
      display: grid;
      gap: 15px;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: .8rem;
      font-weight: 700;
    }

    .contact-detail-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(20,34,28,.25);
    }

    .contact-detail-icon svg {
      width: 14px;
    }

    .contact-form {
      background: var(--paper);
      padding: 42px;
      border-radius: 28px;
      box-shadow: 0 30px 70px rgba(55,43,27,.12);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: #69746d;
      font-size: .68rem;
      font-weight: 700;
    }

    .form-control {
      width: 100%;
      min-height: 51px;
      border: 1px solid rgba(23,32,27,.14);
      border-radius: 12px;
      padding: 0 15px;
      color: var(--ink);
      background: #fff;
      outline: 0;
      transition: border .25s ease, box-shadow .25s ease;
      font-size: .8rem;
    }

    textarea.form-control {
      min-height: 118px;
      padding-top: 13px;
      resize: vertical;
    }

    .form-control:focus {
      border-color: #a78353;
      box-shadow: 0 0 0 3px rgba(167,131,83,.1);
    }

    .form-control.error {
      border-color: var(--danger);
    }

    .form-submit {
      width: 100%;
      border-radius: 12px;
      margin-top: 3px;
    }

    .form-message {
      display: none;
      margin-top: 16px;
      padding: 12px 14px;
      border-radius: 10px;
      color: #215b3b;
      background: #e4f3e9;
      font-size: .74rem;
    }

    .form-message.visible {
      display: block;
    }

    /* =========================
       Footer
    ========================= */
    .footer {
      padding: 70px 0 30px;
      background: #0f1b15;
      color: white;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr .65fr .65fr .8fr;
      gap: 70px;
      padding-bottom: 65px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .footer .brand {
      color: white;
    }

    .footer-copy {
      max-width: 410px;
      margin: 25px 0 0;
      color: rgba(255,255,255,.5);
      font-size: .78rem;
    }

    .footer-title {
      margin: 0 0 20px;
      color: rgba(255,255,255,.45);
      font-size: .66rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    html[lang="ar"] .footer-title {
      letter-spacing: 0;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      font-size: .76rem;
    }

    .footer-link {
      color: rgba(255,255,255,.75);
      transition: .25s ease;
    }

    .footer-link:hover {
      color: var(--sand-light);
    }

    .footer-social {
      display: flex;
      gap: 8px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: rgba(255,255,255,.7);
      transition: .25s ease;
    }

    .social-link:hover {
      color: var(--forest);
      background: var(--sand);
      border-color: var(--sand);
      transform: translateY(-2px);
    }

    .social-link svg {
      width: 15px;
      height: 15px;
    }

    .footer-bottom {
      padding-top: 25px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      color: rgba(255,255,255,.38);
      font-size: .65rem;
    }

    .footer-signature {
      color: rgba(255,255,255,.58);
      font-family: var(--font-serif);
      font-style: italic;
    }

    html[lang="ar"] .footer-signature {
      font-family: var(--font-ar);
      font-style: normal;
    }

    /* =========================
       Toast
    ========================= */
    .toast {
      position: fixed;
      z-index: 3000;
      bottom: 25px;
      inset-inline-start: 50%;
      max-width: calc(100% - 32px);
      padding: 13px 19px;
      border-radius: 100px;
      color: white;
      background: rgba(20,34,28,.96);
      box-shadow: var(--shadow-lg);
      font-size: .75rem;
      font-weight: 600;
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%) translateY(20px);
      transition: .35s var(--ease);
    }

    [dir="rtl"] .toast {
      transform: translateX(50%) translateY(20px);
    }

    .toast.visible {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    [dir="rtl"] .toast.visible {
      transform: translateX(50%) translateY(0);
    }

    /* =========================
       Mobile nav overlay
    ========================= */
    .mobile-nav {
      display: none;
    }

    /* =========================
       Responsive
    ========================= */
    @media (max-width: 1100px) {
      .nav-links {
        gap: 20px;
      }

      .hero-grid {
        grid-template-columns: 1.35fr .65fr;
        gap: 35px;
      }

      .experience-grid {
        gap: 55px;
      }

      .neighborhood-grid {
        min-height: 530px;
      }

      .neighborhood-card {
        min-height: 510px;
      }

      .neighborhood-card:nth-child(2) {
        min-height: 470px;
      }

      .neighborhood-card:nth-child(3) {
        min-height: 430px;
      }

      .contact-grid,
      .faq-grid {
        gap: 60px;
      }

      .footer-top {
        gap: 40px;
      }
    }

    @media (max-width: 930px) {
      :root {
        --nav-height: 76px;
      }

      .container {
        width: min(calc(100% - 34px), var(--container));
      }

      .section {
        padding: 86px 0;
      }

      .nav {
        grid-template-columns: 1fr auto;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .nav-actions {
        gap: 8px;
      }

      .menu-toggle {
        display: block;
      }

      .mobile-nav {
        display: block;
        position: fixed;
        z-index: 999;
        inset: 0;
        width: 100%;
        height: 100dvh;
        padding: 115px 24px 35px;
        background: rgba(15,27,21,.985);
        color: white;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition:
          opacity .3s ease,
          visibility .3s ease,
          transform .3s ease;
        overflow-y: auto;
      }

      .mobile-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
      }

      .mobile-nav-inner {
        width: min(100%, 680px);
        margin: 0 auto;
      }

      .mobile-nav-links {
        display: grid;
      }

      .mobile-nav-link {
        padding: 18px 2px;
        border-bottom: 1px solid rgba(255,255,255,.12);
        font-family: var(--font-serif);
        font-size: 2.2rem;
        line-height: 1.15;
      }

      html[lang="ar"] .mobile-nav-link {
        font-family: var(--font-ar);
        font-size: 1.55rem;
        line-height: 1.7;
      }

      .mobile-nav-cta {
        margin-top: 28px;
        width: 100%;
      }

      body.menu-open {
        overflow: hidden;
      }

      .hero {
        min-height: 810px;
        height: auto;
        max-height: none;
      }

      .hero-inner {
        padding-top: 190px;
        padding-bottom: 100px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
      }

      .hero h1 {
        max-width: 760px;
      }

      .hero-side {
        padding-inline-start: 0;
        padding-top: 25px;
        border-inline-start: 0;
        border-top: 1px solid rgba(255,255,255,.2);
        max-width: 520px;
      }

      .hero-scroll {
        display: none;
      }

      .search-panel {
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }

      .search-field:nth-child(2) {
        border-inline-end: 0;
      }

      .search-field:nth-child(3) {
        border-top: 1px solid var(--line);
      }

      .search-button {
        margin-inline-start: 14px;
        margin-top: 14px;
      }

      .intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
      }

      .intro-aside {
        position: static;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 20px 40px;
      }

      .intro-aside p {
        margin: 0;
      }

      .experience-grid {
        grid-template-columns: 1fr;
      }

      .experience-visual {
        width: min(100%, 650px);
        min-height: 600px;
      }

      .experience-image-main {
        height: 530px;
      }

      .neighborhoods-intro {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .neighborhoods-intro .section-copy {
        max-width: 650px;
      }

      .neighborhood-grid {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
      }

      .neighborhood-card,
      .neighborhood-card:nth-child(2),
      .neighborhood-card:nth-child(3) {
        margin: 0;
        min-height: 480px;
        border-radius: 180px 180px 24px 24px;
      }

      .neighborhood-card:nth-child(3) {
        grid-column: 1 / -1;
        width: 60%;
        min-height: 420px;
        justify-self: center;
      }

      .process-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 50px;
      }

      .process-grid::before {
        display: none;
      }

      .testimonial-wrap {
        grid-template-columns: 1fr;
        gap: 35px;
      }

      .testimonial-photo {
        min-height: 480px;
        max-height: 570px;
      }

      .testimonial-content {
        padding: 15px 0;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stat {
        padding: 25px;
      }

      .stat:nth-child(2) {
        border-inline-end: 0;
      }

      .stat:nth-child(1),
      .stat:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.13);
      }

      .faq-grid {
        grid-template-columns: 1fr;
        gap: 45px;
      }

      .faq-side {
        position: static;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
      }

      .footer-top {
        grid-template-columns: 1.4fr 1fr 1fr;
      }

      .footer-brand-column {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 680px) {
      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .section {
        padding: 72px 0;
      }

      .brand-subtitle {
        display: none;
      }

      .brand-mark {
        width: 36px;
        height: 36px;
      }

      .lang-switch {
        height: 40px;
        padding: 0 12px;
      }

      .hero {
        min-height: 790px;
      }

      .hero-inner {
        padding-top: 160px;
        padding-bottom: 68px;
      }

      .hero-media::before {
        background:
          linear-gradient(180deg, rgba(12,24,18,.4) 0%, rgba(12,24,18,.15) 25%, rgba(12,24,18,.75) 68%, rgba(12,24,18,.95) 100%);
      }

      .hero-image {
        object-position: 58% center;
      }

      .hero h1 {
        font-size: clamp(3.25rem, 15vw, 5rem);
      }

      html[lang="ar"] .hero h1 {
        font-size: clamp(2.6rem, 11vw, 4rem);
        line-height: 1.4;
        letter-spacing: -.045em;
      }

      .hero-kicker {
        font-size: .64rem;
      }

      .hero-sub {
        font-size: .88rem;
      }

      .hero-actions {
        align-items: stretch;
      }

      .hero-actions .btn {
        flex: 1 1 100%;
      }

      .hero-side {
        margin-top: 4px;
      }

      .hero-stats {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }

      .hero-stat-number {
        font-size: 1.85rem;
      }

      .search-ribbon {
        margin-top: 0;
        padding: 14px 0 0;
        background: var(--cream);
      }

      .search-panel {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 8px;
        border-radius: 18px;
        box-shadow: var(--shadow-sm);
      }

      .search-field {
        min-height: 67px;
        border-inline-end: 0;
        border-bottom: 1px solid var(--line);
        padding-inline: 14px;
      }

      .search-field:nth-child(3) {
        border-top: 0;
      }

      .search-field svg {
        inset-inline-end: 14px;
      }

      .search-button {
        min-height: 52px;
        margin: 8px 0 0;
        width: 100%;
      }

      .intro {
        padding-top: 82px;
      }

      .intro-aside {
        display: block;
      }

      .intro-aside p {
        margin-top: 18px;
      }

      .intro-heading {
        font-size: clamp(2.35rem, 11vw, 3.75rem);
      }

      html[lang="ar"] .intro-heading {
        font-size: clamp(2rem, 8.9vw, 3.1rem);
        line-height: 1.55;
      }

      .intro-bottom {
        grid-template-columns: 1fr;
        margin-top: 38px;
      }

      .section-heading-row {
        display: block;
        margin-bottom: 38px;
      }

      .section-heading-row .section-copy {
        margin-top: 18px;
      }

      .section-title {
        font-size: clamp(2.2rem, 11vw, 3.7rem);
      }

      html[lang="ar"] .section-title {
        font-size: clamp(1.9rem, 8.6vw, 3.05rem);
      }

      .property-toolbar {
        margin-top: 25px;
      }

      .property-grid,
      .property-extra.visible {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }

      .property-card,
      .property-card:first-child {
        min-height: 510px;
        grid-row: auto;
      }

      .property-card:not(:first-child) {
        min-height: 400px;
      }

      .property-card:first-child .property-content,
      .property-content {
        padding: 24px;
      }

      .property-card:first-child .property-content h3 {
        font-size: 2.35rem;
      }

      html[lang="ar"] .property-card:first-child .property-content h3 {
        font-size: 1.75rem;
      }

      .properties-footer {
        align-items: flex-start;
        flex-direction: column;
      }

      .properties-footer .btn {
        width: 100%;
      }

      .experience-grid {
        gap: 50px;
      }

      .experience-visual {
        min-height: 500px;
      }

      .experience-image-main {
        width: 90%;
        height: 450px;
        border-radius: 180px 180px 24px 24px;
      }

      .experience-image-small {
        width: 52%;
        height: 215px;
        border-width: 7px;
      }

      .experience-badge {
        width: 118px;
        height: 118px;
        top: 46%;
      }

      .experience-badge strong {
        font-size: 1.55rem;
      }

      .experience-badge span {
        font-size: .55rem;
      }

      .service-item {
        grid-template-columns: 34px 1fr 32px;
        min-height: 116px;
        gap: 10px;
      }

      .service-description {
        font-size: .69rem;
        line-height: 1.75;
      }

      .service-arrow {
        width: 31px;
        height: 31px;
      }

      .neighborhood-grid {
        grid-template-columns: 1fr;
      }

      .neighborhood-card,
      .neighborhood-card:nth-child(2),
      .neighborhood-card:nth-child(3) {
        width: 100%;
        grid-column: auto;
        min-height: 460px;
        border-radius: 170px 170px 24px 24px;
      }

      .process-grid {
        grid-template-columns: 1fr;
        margin-top: 45px;
        row-gap: 35px;
      }

      .process-step {
        padding: 0;
        display: grid;
        grid-template-columns: 54px 1fr;
        gap: 18px;
      }

      .process-dot {
        margin: 0;
      }

      .process-step > div:last-child {
        padding-top: 3px;
      }

      .testimonial-photo {
        min-height: 410px;
      }

      .quote {
        font-size: 2.25rem;
      }

      html[lang="ar"] .quote {
        font-size: 1.72rem;
      }

      .quote-person {
        align-items: flex-start;
        flex-direction: column;
      }

      .stats-band {
        padding: 45px 0;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stat {
        padding: 22px 15px;
      }

      .stat-number {
        font-size: 2.75rem;
      }

      .faq-question {
        grid-template-columns: 1fr 36px;
        min-height: 88px;
        padding: 21px 0;
        font-size: .83rem;
      }

      .faq-answer p,
      [dir="rtl"] .faq-answer p {
        padding: 0 0 25px;
      }

      .contact-section {
        padding: 80px 0 70px;
      }

      .contact-form {
        padding: 25px 18px;
        border-radius: 22px;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .footer {
        padding-top: 55px;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
      }

      .footer-brand-column,
      .footer-social-column {
        grid-column: 1 / -1;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .mobile-nav-link {
        font-size: 1.85rem;
      }

      html[lang="ar"] .mobile-nav-link {
        font-size: 1.4rem;
      }

      .toast {
        width: calc(100% - 28px);
        text-align: center;
        border-radius: 14px;
      }
    }

    @media (max-width: 390px) {
      .container {
        width: calc(100% - 24px);
      }

      .brand-name {
        font-size: 1.15rem;
      }

      html[lang="ar"] .brand-name {
        font-size: .9rem;
      }

      .hero h1 {
        font-size: 3.1rem;
      }

      html[lang="ar"] .hero h1 {
        font-size: 2.45rem;
      }

      .hero-stat-number {
        font-size: 1.65rem;
      }

      .property-features {
        gap: 10px;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .footer-brand-column,
      .footer-social-column {
        grid-column: auto;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }

      html.js [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
      }
    }
