:root {
      --ink: #17241d;
      --ink-soft: #27372e;
      --cream: #f3efe5;
      --cream-2: #ebe4d5;
      --paper: #fbfaf6;
      --gold: #b89452;
      --gold-light: #ddc485;
      --sage: #768d7f;
      --white: #ffffff;
      --muted: #6f746f;
      --line: rgba(23, 36, 29, 0.13);
      --shadow: 0 32px 80px rgba(24, 36, 29, 0.12);
      --shadow-soft: 0 16px 44px rgba(24, 36, 29, 0.08);
      --radius-sm: 12px;
      --radius-md: 24px;
      --radius-lg: 38px;
      --container: 1260px;
      --header-h: 86px;
      --ease: cubic-bezier(.22, .8, .2, 1);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: "Noto Kufi Arabic", sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    html[lang="en"] body {
      font-family: "DM Sans", sans-serif;
      line-height: 1.6;
    }

    img {
      display: block;
      max-width: 100%;
    }

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

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

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

    button {
      color: inherit;
    }

    :focus-visible {
      outline: 3px solid rgba(184, 148, 82, 0.5);
      outline-offset: 4px;
    }

    ::selection {
      background: var(--gold);
      color: white;
    }

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

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

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

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

    .section-title {
      margin: 18px 0 0;
      max-width: 760px;
      font-family: "DM Sans", "Noto Kufi Arabic", sans-serif;
      font-size: clamp(2.25rem, 5.2vw, 5.3rem);
      line-height: 0.98;
      letter-spacing: -0.055em;
      font-weight: 500;
    }

    html[lang="ar"] .section-title {
      font-family: "Noto Kufi Arabic", sans-serif;
      font-size: clamp(2rem, 4.8vw, 4.65rem);
      line-height: 1.28;
      letter-spacing: -0.04em;
    }

    .section-copy {
      max-width: 650px;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .btn {
      min-height: 52px;
      padding: 0 23px;
      border: 1px solid transparent;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
      font-weight: 700;
      cursor: pointer;
      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(--gold);
      color: #111a15;
      box-shadow: 0 15px 34px rgba(184, 148, 82, 0.24);
    }

    .btn-primary:hover {
      background: var(--gold-light);
      box-shadow: 0 20px 42px rgba(184, 148, 82, 0.31);
    }

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

    .btn-dark:hover {
      background: #26372e;
    }

    .btn-outline {
      border-color: rgba(255,255,255,.24);
      color: white;
      background: rgba(255,255,255,.05);
      backdrop-filter: blur(12px);
    }

    .btn-outline:hover {
      background: white;
      color: var(--ink);
    }

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

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

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

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

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      height: var(--header-h);
      z-index: 1000;
      transition:
        background .35s,
        box-shadow .35s,
        backdrop-filter .35s;
    }

    .site-header.scrolled {
      background: rgba(251, 250, 246, .88);
      backdrop-filter: blur(18px);
      box-shadow: 0 1px 0 var(--line);
    }

    .nav {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 1002;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--ink);
      color: var(--gold-light);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.09);
    }

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

    .brand-copy {
      display: grid;
      line-height: 1.25;
    }

    .brand-name {
      font-size: .93rem;
      font-weight: 700;
    }

    .brand-sub {
      font-family: "DM Sans", sans-serif;
      font-size: .64rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-link {
      position: relative;
      font-size: .84rem;
      font-weight: 600;
      color: #425047;
      transition: color .25s;
    }

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

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

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

    .nav-tools {
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 1002;
    }

    .language-toggle {
      height: 43px;
      padding: 4px;
      border-radius: 999px;
      background: rgba(23,36,29,.07);
      display: flex;
      align-items: center;
      gap: 1px;
      border: 0;
      cursor: pointer;
    }

    .lang-side {
      min-width: 36px;
      height: 35px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      font-family: "DM Sans", sans-serif;
      font-size: .72rem;
      font-weight: 700;
      transition: background .3s, color .3s;
      color: #637068;
    }

    html[lang="ar"] .lang-ar,
    html[lang="en"] .lang-en {
      background: var(--ink);
      color: white;
    }

    .nav-cta {
      min-height: 43px;
      padding-inline: 18px;
      font-size: .78rem;
    }

    .menu-toggle {
      width: 44px;
      height: 44px;
      border: 0;
      background: var(--ink);
      color: white;
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      width: 18px;
      height: 1.5px;
      background: currentColor;
      position: absolute;
      transition: transform .3s, opacity .3s;
    }

    .menu-toggle::before {
      transform: translateY(-6px);
    }

    .menu-toggle::after {
      transform: translateY(6px);
    }

    .menu-toggle[aria-expanded="true"] span {
      opacity: 0;
    }

    .menu-toggle[aria-expanded="true"]::before {
      transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"]::after {
      transform: rotate(-45deg);
    }

    /* HERO */
    .hero {
      min-height: 100svh;
      padding: calc(var(--header-h) + 32px) 0 50px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% 10%, rgba(217,183,111,.17), transparent 28%),
        linear-gradient(180deg, #f8f5ed 0%, var(--paper) 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .23;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(23,36,29,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23,36,29,.06) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(to bottom, black, transparent 76%);
    }

    .hero-layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      min-height: 730px;
      gap: 56px;
      align-items: center;
    }

    html[dir="rtl"] .hero-layout {
      grid-template-columns: 1.1fr .9fr;
    }

    .hero-copy {
      position: relative;
      z-index: 5;
      padding-block: 40px;
    }

    .hero-kicker {
      margin-bottom: 22px;
    }

    .hero h1 {
      margin: 0;
      max-width: 700px;
      font-family: "DM Sans", "Noto Kufi Arabic", sans-serif;
      font-size: clamp(4rem, 7.4vw, 7.7rem);
      font-weight: 500;
      line-height: .91;
      letter-spacing: -.067em;
    }

    html[lang="ar"] .hero h1 {
      font-family: "Noto Kufi Arabic", sans-serif;
      font-size: clamp(3rem, 5.9vw, 6rem);
      line-height: 1.22;
      letter-spacing: -.05em;
    }

    .hero h1 .accent {
      color: var(--gold);
      font-style: italic;
      font-family: Georgia, serif;
      font-weight: 400;
    }

    html[lang="ar"] .hero h1 .accent {
      font-family: "Noto Kufi Arabic", sans-serif;
      font-style: normal;
      font-weight: 600;
    }

    .hero-description {
      max-width: 570px;
      color: #687269;
      font-size: clamp(.96rem, 1.3vw, 1.08rem);
      margin: 28px 0 30px;
    }

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

    .text-link {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: .86rem;
      padding: 0 10px;
    }

    .text-link .circle-arrow {
      width: 38px;
      height: 38px;
      border: 1px solid var(--line);
      border-radius: 50%;
      display: grid;
      place-items: center;
      transition: background .3s, color .3s, border-color .3s;
    }

    .text-link:hover .circle-arrow {
      background: var(--ink);
      color: white;
      border-color: var(--ink);
    }

    .hero-trust {
      margin-top: 44px;
      padding-top: 23px;
      border-top: 1px solid var(--line);
      display: flex;
      gap: 36px;
      flex-wrap: wrap;
    }

    .trust-item strong {
      display: block;
      font-family: "DM Sans", sans-serif;
      font-size: 1.3rem;
      font-weight: 600;
      line-height: 1.2;
    }

    .trust-item span {
      color: var(--muted);
      font-size: .72rem;
    }

    .hero-visual {
      min-width: 0;
      position: relative;
      height: min(72vw, 720px);
      max-height: 720px;
    }

    .hero-photo-main {
      position: absolute;
      inset: 0 0 0 12%;
      border-radius: 260px 260px var(--radius-lg) var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    html[dir="rtl"] .hero-photo-main {
      inset: 0 12% 0 0;
    }

    .hero-photo-main::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, transparent 47%, rgba(10,20,15,.5)),
        linear-gradient(115deg, transparent 55%, rgba(184,148,82,.18));
    }

    .hero-photo-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.3s var(--ease);
    }

    .hero:hover .hero-photo-main img {
      transform: scale(1.025);
    }

    .hero-property-label {
      position: absolute;
      inset-inline-start: -9px;
      bottom: 40px;
      z-index: 4;
      background: rgba(251,250,246,.93);
      backdrop-filter: blur(17px);
      border: 1px solid rgba(255,255,255,.67);
      border-radius: 22px;
      padding: 18px 20px;
      width: min(280px, 67%);
      box-shadow: var(--shadow-soft);
    }

    .hero-property-label small {
      color: var(--sage);
      font-size: .68rem;
      font-weight: 700;
      display: block;
      margin-bottom: 4px;
    }

    .hero-property-label strong {
      font-size: .95rem;
    }

    .hero-price {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 11px;
    }

    .hero-price span:first-child {
      font-family: "DM Sans", sans-serif;
      color: var(--gold);
      font-weight: 700;
    }

    .availability {
      font-size: .62rem;
      color: #476650;
      background: #e7efe9;
      border-radius: 999px;
      padding: 6px 10px;
    }

    .hero-vertical-note {
      position: absolute;
      inset-inline-end: -11px;
      top: 20%;
      z-index: 5;
      background: var(--ink);
      color: white;
      padding: 15px 12px;
      border-radius: 999px;
      writing-mode: vertical-rl;
      font-size: .61rem;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

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

    .scroll-cue {
      position: absolute;
      inset-inline-start: 50%;
      bottom: 17px;
      transform: translateX(-50%);
      width: 26px;
      height: 42px;
      border: 1px solid rgba(23,36,29,.28);
      border-radius: 99px;
      display: grid;
      place-items: start center;
      padding-top: 8px;
    }

    .scroll-cue::before {
      content: "";
      width: 4px;
      height: 8px;
      border-radius: 999px;
      background: var(--gold);
      animation: scrollDot 1.8s ease infinite;
    }

    @keyframes scrollDot {
      0% { transform: translateY(0); opacity: 1; }
      65% { transform: translateY(13px); opacity: 0; }
      100% { transform: translateY(0); opacity: 0; }
    }

    /* INTRO */
    .intro {
      padding: 125px 0 110px;
      position: relative;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 75px;
      align-items: start;
    }

    html[dir="rtl"] .intro-grid {
      grid-template-columns: 1.2fr .8fr;
    }

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

    .intro-aside p {
      color: var(--muted);
      max-width: 390px;
      margin: 24px 0 0;
    }

    .intro-statement {
      margin: 0;
      font-family: "DM Sans", "Noto Kufi Arabic", sans-serif;
      font-size: clamp(2.15rem, 4.6vw, 4.55rem);
      font-weight: 500;
      letter-spacing: -.052em;
      line-height: 1.06;
    }

    html[lang="ar"] .intro-statement {
      font-family: "Noto Kufi Arabic", sans-serif;
      font-size: clamp(1.9rem, 4vw, 3.9rem);
      line-height: 1.42;
      letter-spacing: -.045em;
    }

    .intro-statement em {
      color: var(--gold);
      font-family: Georgia, serif;
      font-weight: 400;
    }

    html[lang="ar"] .intro-statement em {
      font-family: inherit;
      font-style: normal;
    }

    .intro-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-top: 44px;
    }

    .mini-principle {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 22px;
      min-height: 165px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: rgba(255,255,255,.55);
      transition: transform .35s, background .35s;
    }

    .mini-principle:hover {
      transform: translateY(-5px);
      background: white;
    }

    .mini-number {
      color: var(--gold);
      font-family: "DM Sans", sans-serif;
      font-size: .8rem;
    }

    .mini-principle strong {
      max-width: 240px;
      font-size: .9rem;
    }

    /* PROPERTIES */
    .properties {
      background: var(--ink);
      color: white;
      padding: 110px 0 125px;
      border-radius: 45px 45px 0 0;
      position: relative;
      overflow: hidden;
    }

    .properties::before {
      content: "";
      width: 600px;
      height: 600px;
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(217,183,111,.09);
      top: -300px;
      inset-inline-end: -120px;
      box-shadow:
        0 0 0 80px rgba(217,183,111,.025),
        0 0 0 160px rgba(217,183,111,.015);
    }

    .properties .eyebrow {
      color: var(--gold-light);
    }

    .properties-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }

    .properties-heading .section-title {
      max-width: 810px;
    }

    .properties-heading p {
      color: rgba(255,255,255,.58);
      max-width: 380px;
      margin: 0;
    }

    .property-list {
      display: grid;
      gap: 16px;
      position: relative;
      z-index: 1;
    }

    .property-card {
      min-height: 470px;
      border-radius: var(--radius-md);
      position: relative;
      overflow: hidden;
      display: grid;
      align-items: end;
      isolation: isolate;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    }

    .property-card:nth-child(1) {
      margin-inline-end: 12%;
    }

    .property-card:nth-child(2) {
      margin-inline-start: 17%;
    }

    .property-card:nth-child(3) {
      margin-inline-end: 7%;
      margin-inline-start: 7%;
    }

    .property-card > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      transition: transform .9s var(--ease);
    }

    .property-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(180deg, rgba(8,15,11,.05) 20%, rgba(8,15,11,.15) 48%, rgba(8,15,11,.9) 100%);
    }

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

    .property-top {
      position: absolute;
      top: 22px;
      inset-inline: 22px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
    }

    .property-badge {
      background: rgba(250,248,242,.91);
      color: var(--ink);
      backdrop-filter: blur(9px);
      padding: 8px 13px;
      border-radius: 999px;
      font-size: .66rem;
      font-weight: 700;
    }

    .property-index {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.44);
      border-radius: 50%;
      font-family: "DM Sans", sans-serif;
      font-size: .74rem;
    }

    .property-content {
      padding: 30px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      gap: 24px;
    }

    .property-location {
      color: rgba(255,255,255,.63);
      font-size: .75rem;
      margin-bottom: 6px;
    }

    .property-name {
      margin: 0;
      font-family: "DM Sans", "Noto Kufi Arabic", sans-serif;
      font-size: clamp(1.7rem, 3vw, 2.7rem);
      line-height: 1.1;
      letter-spacing: -.045em;
      font-weight: 500;
    }

    html[lang="ar"] .property-name {
      font-family: "Noto Kufi Arabic", sans-serif;
      line-height: 1.4;
      font-size: clamp(1.45rem, 2.7vw, 2.25rem);
    }

    .property-meta {
      display: flex;
      gap: 18px;
      margin-top: 16px;
      color: rgba(255,255,255,.71);
      font-size: .72rem;
      flex-wrap: wrap;
    }

    .property-meta span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .property-price {
      text-align: end;
    }

    .property-price small {
      display: block;
      color: rgba(255,255,255,.55);
      font-size: .64rem;
      margin-bottom: 4px;
    }

    .property-price strong {
      font-family: "DM Sans", sans-serif;
      font-size: 1.45rem;
      font-weight: 600;
      color: var(--gold-light);
    }

    /* EXPERIENCE */
    .experience {
      padding: 125px 0;
      background: var(--cream);
      position: relative;
    }

    .experience-head {
      display: grid;
      grid-template-columns: 1fr .7fr;
      gap: 50px;
      align-items: end;
      margin-bottom: 70px;
    }

    .experience-head .section-copy {
      margin: 0 0 7px;
    }

    .experience-layout {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 20px;
      align-items: stretch;
    }

    .experience-image {
      min-height: 700px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
    }

    .experience-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .experience-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15,25,19,.32), transparent 40%);
    }

    .image-caption {
      position: absolute;
      z-index: 2;
      inset-inline-start: 24px;
      bottom: 24px;
      background: rgba(251,250,246,.9);
      backdrop-filter: blur(10px);
      padding: 15px 18px;
      border-radius: 16px;
      font-size: .7rem;
      color: var(--ink);
    }

    .journey {
      border-radius: var(--radius-lg);
      background: var(--paper);
      padding: clamp(27px, 4vw, 55px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .journey-title {
      font-family: "DM Sans", "Noto Kufi Arabic", sans-serif;
      font-size: clamp(2rem, 3.3vw, 3.35rem);
      font-weight: 500;
      line-height: 1.06;
      letter-spacing: -.05em;
      margin: 0 0 34px;
    }

    html[lang="ar"] .journey-title {
      font-family: "Noto Kufi Arabic", sans-serif;
      line-height: 1.35;
    }

    .journey-steps {
      border-top: 1px solid var(--line);
    }

    .journey-step {
      display: grid;
      grid-template-columns: 50px 1fr;
      gap: 18px;
      padding: 25px 0;
      border-bottom: 1px solid var(--line);
    }

    .journey-step span {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      font-family: "DM Sans", sans-serif;
      font-size: .75rem;
      color: var(--gold);
    }

    .journey-step h3 {
      font-size: .92rem;
      margin: 0 0 6px;
    }

    .journey-step p {
      color: var(--muted);
      font-size: .79rem;
      margin: 0;
    }

    /* STATS */
    .stats {
      background: var(--cream);
      padding: 0 0 125px;
    }

    .stats-shell {
      background: var(--gold);
      color: var(--ink);
      border-radius: var(--radius-lg);
      padding: 38px clamp(25px, 5vw, 65px);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat {
      padding: 22px;
      border-inline-end: 1px solid rgba(23,36,29,.18);
    }

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

    .stat-value {
      font-family: "DM Sans", sans-serif;
      font-size: clamp(2.6rem, 5vw, 5rem);
      line-height: 1;
      letter-spacing: -.06em;
      display: block;
    }

    .stat-label {
      margin-top: 13px;
      display: block;
      font-size: .72rem;
      max-width: 160px;
    }

    /* ADVISORY */
    .advisory {
      padding: 130px 0;
      background: var(--paper);
    }

    .advisory-layout {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 65px;
      align-items: center;
    }

    .advisory-copy .section-copy {
      margin: 28px 0 33px;
    }

    .service-list {
      display: grid;
      margin-top: 30px;
    }

    .service-row {
      display: grid;
      grid-template-columns: 43px 1fr auto;
      align-items: center;
      gap: 15px;
      min-height: 76px;
      border-bottom: 1px solid var(--line);
      transition: padding .3s, color .3s;
    }

    .service-row:first-child {
      border-top: 1px solid var(--line);
    }

    .service-row:hover {
      padding-inline: 8px;
      color: var(--gold);
    }

    .service-index {
      font-family: "DM Sans", sans-serif;
      color: var(--gold);
      font-size: .72rem;
    }

    .service-row strong {
      font-size: .85rem;
    }

    .service-row svg {
      width: 18px;
      height: 18px;
    }

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

    .advisory-visual {
      position: relative;
      min-height: 650px;
    }

    .advisory-image-a {
      position: absolute;
      inset: 0 18% 11% 0;
      border-radius: 260px 260px 28px 28px;
      overflow: hidden;
    }

    html[dir="rtl"] .advisory-image-a {
      inset: 0 0 11% 18%;
    }

    .advisory-image-a img,
    .advisory-image-b img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .advisory-image-b {
      position: absolute;
      width: 43%;
      height: 42%;
      inset-inline-end: 0;
      bottom: 0;
      border: 9px solid var(--paper);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .advisor-note {
      position: absolute;
      top: 12%;
      inset-inline-end: -8px;
      width: 170px;
      height: 170px;
      background: var(--ink);
      color: white;
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 24px;
      font-size: .67rem;
      box-shadow: var(--shadow);
    }

    .advisor-note::before {
      content: "✦";
      position: absolute;
      top: 25px;
      color: var(--gold-light);
      font-size: 1rem;
    }

    /* TESTIMONIAL */
    .testimonials {
      padding: 130px 0;
      background: #e7e3da;
      overflow: hidden;
    }

    .testimonial-layout {
      display: grid;
      grid-template-columns: .65fr 1.35fr;
      gap: 50px;
      align-items: start;
    }

    .testimonial-quote {
      background: var(--paper);
      border-radius: var(--radius-lg);
      padding: clamp(30px, 5vw, 65px);
      position: relative;
      min-height: 460px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .quote-mark {
      font-family: Georgia, serif;
      color: var(--gold);
      font-size: 6rem;
      line-height: .6;
      height: 50px;
    }

    .testimonial-text {
      font-family: "DM Sans", "Noto Kufi Arabic", sans-serif;
      font-size: clamp(1.7rem, 3.4vw, 3.15rem);
      font-weight: 500;
      letter-spacing: -.045em;
      line-height: 1.18;
      margin: 28px 0 50px;
    }

    html[lang="ar"] .testimonial-text {
      font-family: "Noto Kufi Arabic", sans-serif;
      font-size: clamp(1.4rem, 2.8vw, 2.6rem);
      line-height: 1.6;
    }

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

    .person-info strong {
      display: block;
      font-size: .84rem;
    }

    .person-info span {
      color: var(--muted);
      font-size: .7rem;
    }

    .testimonial-nav {
      display: flex;
      gap: 8px;
    }

    .testimonial-nav button {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      background: transparent;
      border-radius: 50%;
      cursor: pointer;
      transition: background .3s, color .3s;
    }

    .testimonial-nav button:hover {
      background: var(--ink);
      color: white;
    }

    .testimonial-nav svg {
      width: 16px;
    }

    html[dir="rtl"] .testimonial-nav svg {
      transform: scaleX(-1);
    }

    .testimonial-side {
      padding-top: 13px;
    }

    .testimonial-side .section-title {
      font-size: clamp(2rem, 4.5vw, 4.6rem);
    }

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

    .testimonial-side .section-copy {
      margin-top: 29px;
    }

    .client-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 40px;
    }

    .client-tag {
      border: 1px solid rgba(23,36,29,.18);
      padding: 11px 16px;
      border-radius: 999px;
      font-size: .7rem;
      color: #555f58;
    }

    /* FAQ */
    .faq {
      padding: 130px 0;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: 80px;
      align-items: start;
    }

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

    .faq-intro .section-copy {
      margin-top: 25px;
    }

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

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

    .faq-question {
      width: 100%;
      border: 0;
      background: transparent;
      padding: 24px 0;
      display: grid;
      grid-template-columns: 1fr 38px;
      gap: 20px;
      align-items: center;
      text-align: start;
      cursor: pointer;
    }

    .faq-question strong {
      font-size: .9rem;
    }

    .faq-plus {
      width: 35px;
      height: 35px;
      border: 1px solid var(--line);
      border-radius: 50%;
      position: relative;
      transition: background .3s, transform .3s;
    }

    .faq-plus::before,
    .faq-plus::after {
      content: "";
      width: 12px;
      height: 1px;
      position: absolute;
      background: currentColor;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .faq-plus::after {
      transform: translate(-50%, -50%) rotate(90deg);
      transition: transform .3s;
    }

    .faq-question[aria-expanded="true"] .faq-plus {
      background: var(--ink);
      color: white;
      transform: rotate(180deg);
    }

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

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

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

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

    .faq-answer p {
      margin: -4px 50px 25px 0;
      color: var(--muted);
      max-width: 700px;
      font-size: .82rem;
    }

    html[dir="ltr"] .faq-answer p {
      margin: -4px 0 25px 50px;
    }

    /* CONTACT */
    .contact {
      padding: 35px 0 0;
      background: var(--paper);
    }

    .contact-shell {
      background: var(--ink);
      color: white;
      border-radius: 45px 45px 0 0;
      overflow: hidden;
      position: relative;
    }

    .contact-shell::before {
      content: "";
      width: 600px;
      height: 600px;
      border-radius: 50%;
      position: absolute;
      inset-inline-start: -260px;
      bottom: -360px;
      background: radial-gradient(circle, rgba(184,148,82,.18), transparent 67%);
    }

    .contact-main {
      padding: 100px 0 80px;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 80px;
      position: relative;
      z-index: 1;
    }

    .contact-copy .eyebrow {
      color: var(--gold-light);
    }

    .contact-copy .section-title {
      font-size: clamp(2.4rem, 5vw, 5.4rem);
    }

    html[lang="ar"] .contact-copy .section-title {
      font-size: clamp(2rem, 4.4vw, 4.3rem);
    }

    .contact-copy p {
      color: rgba(255,255,255,.59);
      max-width: 520px;
      margin: 28px 0 38px;
    }

    .contact-points {
      display: grid;
      gap: 14px;
    }

    .contact-point {
      display: flex;
      align-items: center;
      gap: 13px;
      color: rgba(255,255,255,.75);
      font-size: .78rem;
    }

    .contact-point-icon {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.11);
    }

    .contact-point-icon svg {
      width: 15px;
    }

    .contact-form-wrap {
      background: var(--cream);
      color: var(--ink);
      border-radius: 28px;
      padding: clamp(24px, 4vw, 42px);
    }

    .contact-form-head {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: start;
      margin-bottom: 29px;
    }

    .contact-form-head h3 {
      margin: 0;
      font-family: "DM Sans", "Noto Kufi Arabic", sans-serif;
      font-size: 1.55rem;
      letter-spacing: -.03em;
    }

    html[lang="ar"] .contact-form-head h3 {
      font-family: "Noto Kufi Arabic", sans-serif;
    }

    .contact-form-head span {
      font-family: "DM Sans", sans-serif;
      font-size: .68rem;
      color: var(--gold);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .form-field {
      display: grid;
      gap: 8px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    .form-field label {
      font-size: .68rem;
      font-weight: 700;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      min-width: 0;
      border: 1px solid rgba(23,36,29,.15);
      background: rgba(255,255,255,.68);
      color: var(--ink);
      border-radius: 12px;
      padding: 13px 14px;
      outline: none;
      transition: border-color .25s, box-shadow .25s, background .25s;
    }

    .form-field input,
    .form-field select {
      min-height: 50px;
    }

    .form-field textarea {
      min-height: 116px;
      resize: vertical;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--gold);
      background: white;
      box-shadow: 0 0 0 3px rgba(184,148,82,.13);
    }

    .form-submit {
      margin-top: 20px;
      width: 100%;
    }

    .form-message {
      display: none;
      margin: 14px 0 0;
      padding: 12px 15px;
      border-radius: 12px;
      background: #dceadf;
      color: #2b5b36;
      font-size: .74rem;
    }

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

    /* FOOTER */
    footer {
      position: relative;
      z-index: 1;
      padding: 0 0 25px;
      background: var(--ink);
      color: white;
    }

    .footer-inner {
      padding: 35px 0 0;
      border-top: 1px solid rgba(255,255,255,.11);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.35fr repeat(2, .65fr);
      gap: 60px;
      padding-bottom: 45px;
    }

    .footer-brand .brand {
      color: white;
    }

    .footer-brand .brand-mark {
      background: var(--gold);
      color: var(--ink);
    }

    .footer-brand .brand-sub {
      color: rgba(255,255,255,.45);
    }

    .footer-brand p {
      max-width: 410px;
      color: rgba(255,255,255,.5);
      font-size: .75rem;
      margin: 22px 0 0;
    }

    .footer-col h4 {
      margin: 0 0 18px;
      color: var(--gold-light);
      font-size: .7rem;
    }

    .footer-links {
      display: grid;
      gap: 11px;
    }

    .footer-links a {
      width: fit-content;
      color: rgba(255,255,255,.64);
      font-size: .72rem;
      transition: color .25s;
    }

    .footer-links a:hover {
      color: white;
    }

    .footer-bottom {
      padding: 20px 0;
      border-top: 1px solid rgba(255,255,255,.08);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: rgba(255,255,255,.4);
      font-family: "DM Sans", "Noto Kufi Arabic", sans-serif;
      font-size: .65rem;
    }

    /* REVEAL */
    .reveal {
      opacity: 1;
      transform: none;
    }

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

    html.js .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    html.js .reveal-delay-1 {
      transition-delay: .08s;
    }

    html.js .reveal-delay-2 {
      transition-delay: .16s;
    }

    html.js .reveal-delay-3 {
      transition-delay: .24s;
    }

    /* RESPONSIVE */
    @media (max-width: 1080px) {
      .nav-links {
        gap: 18px;
      }

      .nav-link {
        font-size: .75rem;
      }

      .hero-layout {
        gap: 30px;
      }

      .hero h1 {
        font-size: clamp(3.8rem, 7vw, 6rem);
      }

      html[lang="ar"] .hero h1 {
        font-size: clamp(2.8rem, 5.4vw, 4.7rem);
      }

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

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

      .stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(23,36,29,.18);
      }
    }

    @media (max-width: 880px) {
      :root {
        --header-h: 74px;
      }

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

      .nav-links {
        position: fixed;
        inset: 0;
        padding: 120px 24px 35px;
        background: rgba(246,243,234,.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transform: translateY(-105%);
        opacity: 0;
        pointer-events: none;
        transition: transform .45s var(--ease), opacity .35s;
        z-index: 1001;
        overflow-y: auto;
      }

      .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .nav-link {
        font-family: "DM Sans", "Noto Kufi Arabic", sans-serif;
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        padding: 15px 0;
        border-bottom: 1px solid var(--line);
      }

      html[lang="ar"] .nav-link {
        font-family: "Noto Kufi Arabic", sans-serif;
      }

      .nav-link::after {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .menu-toggle {
        display: flex;
        position: relative;
      }

      .hero {
        padding-top: calc(var(--header-h) + 20px);
      }

      .hero-layout,
      html[dir="rtl"] .hero-layout {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .hero-copy {
        padding: 35px 0 0;
      }

      .hero-description {
        max-width: 640px;
      }

      .hero-visual {
        height: 650px;
      }

      .hero-photo-main,
      html[dir="rtl"] .hero-photo-main {
        inset: 0 5% 0 5%;
      }

      .hero-vertical-note {
        inset-inline-end: 0;
      }

      .scroll-cue {
        display: none;
      }

      .intro-grid,
      html[dir="rtl"] .intro-grid,
      .experience-head,
      .advisory-layout,
      .testimonial-layout,
      .faq-layout,
      .contact-main {
        grid-template-columns: 1fr;
      }

      .intro-aside,
      .faq-intro {
        position: static;
      }

      .intro-grid {
        gap: 45px;
      }

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

      .property-card:nth-child(n) {
        margin-inline: 0;
      }

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

      .experience-image {
        min-height: 540px;
      }

      .journey {
        min-height: 620px;
      }

      .advisory-layout {
        gap: 50px;
      }

      .advisory-visual {
        min-height: 620px;
      }

      .testimonial-layout {
        gap: 48px;
      }

      .testimonial-side {
        order: -1;
      }

      .faq-layout {
        gap: 48px;
      }

      .contact-main {
        gap: 50px;
      }
    }

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

      .brand-copy {
        display: none;
      }

      .language-toggle {
        height: 41px;
      }

      .lang-side {
        min-width: 33px;
        height: 33px;
      }

      .hero {
        min-height: auto;
        padding-bottom: 70px;
      }

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

      html[lang="ar"] .hero h1 {
        font-size: clamp(2.4rem, 11.4vw, 3.45rem);
        line-height: 1.32;
      }

      .hero-description {
        margin: 22px 0 24px;
      }

      .hero-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .hero-actions .btn,
      .hero-actions .text-link {
        width: 100%;
        justify-content: center;
      }

      .hero-trust {
        gap: 18px;
        justify-content: space-between;
        margin-top: 32px;
      }

      .trust-item {
        flex: 1 1 27%;
      }

      .trust-item strong {
        font-size: 1.1rem;
      }

      .trust-item span {
        font-size: .62rem;
      }

      .hero-visual {
        height: 510px;
      }

      .hero-photo-main,
      html[dir="rtl"] .hero-photo-main {
        inset: 0;
        border-radius: 180px 180px 25px 25px;
      }

      .hero-property-label {
        width: calc(100% - 30px);
        inset-inline-start: 15px;
        bottom: 15px;
      }

      .hero-vertical-note {
        display: none;
      }

      .intro,
      .properties,
      .experience,
      .advisory,
      .testimonials,
      .faq {
        padding-top: 85px;
        padding-bottom: 85px;
      }

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

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

      .intro-statement {
        font-size: clamp(2rem, 10vw, 2.85rem);
      }

      html[lang="ar"] .intro-statement {
        font-size: clamp(1.75rem, 8.8vw, 2.5rem);
      }

      .intro-cards {
        grid-template-columns: 1fr;
      }

      .properties {
        border-radius: 30px 30px 0 0;
      }

      .properties-heading {
        margin-bottom: 36px;
      }

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

      .property-content {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px;
      }

      .property-price {
        text-align: start;
      }

      .property-meta {
        gap: 10px 15px;
      }

      .experience {
        padding-bottom: 40px;
      }

      .experience-head {
        gap: 25px;
        margin-bottom: 40px;
      }

      .experience-image {
        min-height: 470px;
        border-radius: 27px;
      }

      .journey {
        border-radius: 27px;
        min-height: auto;
      }

      .stats {
        padding-bottom: 85px;
      }

      .stats-shell {
        grid-template-columns: 1fr 1fr;
        padding: 20px 12px;
        border-radius: 24px;
      }

      .stat {
        padding: 21px 15px;
      }

      .stat-value {
        font-size: 2.7rem;
      }

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

      .advisory-image-a,
      html[dir="rtl"] .advisory-image-a {
        inset: 0 8% 8% 0;
        border-radius: 180px 180px 22px 22px;
      }

      html[dir="rtl"] .advisory-image-a {
        inset: 0 0 8% 8%;
      }

      .advisory-image-b {
        width: 48%;
        height: 36%;
      }

      .advisor-note {
        width: 125px;
        height: 125px;
        font-size: .56rem;
        padding: 17px;
      }

      .advisor-note::before {
        top: 15px;
      }

      .testimonial-quote {
        min-height: 430px;
        border-radius: 27px;
      }

      .testimonial-text {
        font-size: 1.65rem;
      }

      html[lang="ar"] .testimonial-text {
        font-size: 1.35rem;
      }

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

      .faq-answer p,
      html[dir="ltr"] .faq-answer p {
        margin-inline: 0;
      }

      .contact {
        padding-top: 0;
      }

      .contact-shell {
        border-radius: 30px 30px 0 0;
      }

      .contact-main {
        padding: 80px 0 55px;
      }

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

      .form-field.full {
        grid-column: auto;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
      }

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

      .footer-brand .brand-copy {
        display: grid;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

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

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

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

      .hero-visual {
        height: 470px;
      }

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

      .stat {
        border-inline-end: 0;
        border-bottom: 1px solid rgba(23,36,29,.18);
      }

      .stat:last-child {
        border-bottom: 0;
      }

      .advisor-note {
        inset-inline-end: 0;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
      }

      html.js .reveal {
        opacity: 1 !important;
        transform: none !important;
      }
    }
