@font-face {
  font-family: "Iwan Zaza";
  src: url("/assets/public-site/iwan-zaza-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Iwan Zaza";
  src: url("/assets/public-site/iwan-zaza-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Iwan Zaza";
  src: url("/assets/public-site/iwan-zaza-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Iwan Zaza";
  src: url("/assets/public-site/iwan-zaza-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Iwan Zaza";
  src: url("/assets/public-site/iwan-zaza-black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter 28";
  src: url("/assets/public-site/inter-28-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter 28";
  src: url("/assets/public-site/inter-28-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Fragment Serif";
  src: url("/assets/public-site/pp-fragment-serif-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Fragment Serif";
  src: url("/assets/public-site/pp-fragment-serif-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Fragment Glare";
  src: url("/assets/public-site/pp-fragment-glare-light-italic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "PP Fragment Glare";
  src: url("/assets/public-site/pp-fragment-glare-regular-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --page-bg: #171410;
  --deep: #171410;
  --deep-2: #241f19;
  --cream: #eee9df;
  --cream-3: #f7f2e9;
  --ink: #f4efe7;
  --ink-soft: rgba(244, 239, 231, .72);
  --dark: #1d1812;
  --dark-soft: rgba(29, 24, 18, .68);
  --copper: #b77755;
  --copper-2: #d6a17e;
  --line: rgba(244, 239, 231, .22);
  --line-dark: rgba(29, 24, 18, .16);
  --container: min(91vw, 1340px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-ar: "Iwan Zaza", Tahoma, Arial, sans-serif;
  --font-en: "PP Fragment Serif", Georgia, "Times New Roman", serif;

  /* Arabic typography system tokens */
  --ar-label-size: clamp(18px, 1.2vw, 22px);
  --ar-label-line: 1.7;
  --ar-body-size: clamp(18px, 1.32vw, 24px);
  --ar-body-line: 2;
  --ar-meta-size: clamp(17px, 1.08vw, 20px);
  --ar-meta-line: 1.75;
  --ar-form-size: clamp(17px, 1.1vw, 20px);
  --ar-form-line: 1.7;

  --ar-label-size-mobile: clamp(17px, 4.45vw, 21px);
  --ar-body-size-mobile: clamp(17px, 4.55vw, 22px);
  --ar-meta-size-mobile: clamp(16px, 4.15vw, 19px);
}


* {
  box-sizing: border-box;
}

html {
  background: var(--page-bg);
  scroll-behavior: smooth;
}

html.is-aldiyar-scroll-motion-controlled {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-ar);
}

body.is-ltr {
  font-family: "Inter 28", Arial, sans-serif;
}

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

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

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

/* Phase PUBLIC ACCESSIBLE FOCUS 01 */
.aldiyar-public a,
.aldiyar-public button,
.aldiyar-public input,
.aldiyar-public select,
.aldiyar-public textarea,
.aldiyar-public [role="button"] {
  -webkit-tap-highlight-color: transparent;
}

.aldiyar-public button {
  -webkit-appearance: none;
  appearance: none;
}

.aldiyar-public a:focus-visible,
.aldiyar-public button:focus-visible,
.aldiyar-public input:focus-visible,
.aldiyar-public select:focus-visible,
.aldiyar-public textarea:focus-visible,
.aldiyar-public [role="button"]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
/* End Phase PUBLIC ACCESSIBLE FOCUS 01 */

/* Phase PUBLIC SKIP LINK 01 */
.aldiyar-skip-link {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  inset-inline-start: 12px;
  z-index: 500;
  max-width: calc(100vw - 24px);
  padding: 10px 14px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: Canvas;
  color: CanvasText;
  font: inherit;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transform: translateY(calc(-100% - 24px));
  transition: transform .16s ease;
}

.aldiyar-skip-link:focus,
.aldiyar-skip-link:focus-visible {
  transform: translateY(0);
}
/* End Phase PUBLIC SKIP LINK 01 */

::selection {
  background: var(--copper);
  color: var(--deep);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  width: var(--container);
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  mix-blend-mode: normal;
}

.aldiyar-public::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: clamp(56px, 5.2vw, 78px);
  z-index: 90;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(23, 20, 16, .72) 0%,
    rgba(23, 20, 16, .32) 46%,
    rgba(23, 20, 16, 0) 100%
  );
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .78) 48%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .78) 48%, transparent 100%);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, .7vw, 12px);
  color: inherit;
}

.brand-icon {
  display: block;
  width: clamp(18px, 1.35vw, 26px);
  height: auto;
  flex: 0 0 auto;
}

/* Phase EN_BRAND_TITLE_CASE_01 */
.brand-mark span {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: clamp(18px, 1.18vw, 25px);
  line-height: 1;
  letter-spacing: -.028em;
  text-transform: none;
  white-space: nowrap;
}


.is-rtl .brand-mark span {
  font-family: var(--font-ar);
  font-weight: 400;
  font-size: clamp(23px, 1.75vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}

.is-rtl .brand-icon {
  width: clamp(17px, 1.25vw, 24px);
}


.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 32px);
  font-size: 13px;
  color: rgba(244, 239, 231, .82);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: inherit;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.is-rtl .site-nav a::after {
  transform-origin: right;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-nav-toggle,
.mobile-nav-backdrop {
  display: none;
}


.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: var(--deep);
}

.hero-media,
.hero-veiling {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  overflow: hidden;
}

.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
  filter: brightness(.88) saturate(.9) contrast(1.03);
  transform-origin: center;
}

.hero-media video {
  pointer-events: none;
}

.hero-veiling {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 40%, rgba(238, 233, 223, .045), transparent 34%),
    linear-gradient(180deg, rgba(23, 20, 16, .08), rgba(23, 20, 16, .34) 72%, rgba(23, 20, 16, .58));
}


.eyebrow {
  margin: 0 0 22px;
  color: var(--copper-2);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.is-rtl .eyebrow {
  letter-spacing: .04em;
}


.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 27px;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: background .55s var(--ease), color .55s var(--ease), border-color .55s var(--ease), transform .55s var(--ease);
}

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

.btn-primary {
  background: var(--copper);
  border-color: var(--copper);
  color: #171410;
}




.section-pad {
  padding: clamp(95px, 12vw, 185px) 0;
}





.section-line {
  width: var(--container);
  height: 1px;
  margin: 0 auto clamp(45px, 7vw, 92px);
  background: var(--line);
  transform-origin: left;
}

.is-rtl .section-line {
  transform-origin: right;
}







.section-title {
  margin: 0;
  font-size: clamp(44px, 7.2vw, 120px);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 400;
  color: var(--ink);
}

.is-rtl .section-title {
  letter-spacing: -.04em;
}















.number-item {
  padding: clamp(30px, 5vw, 60px);
  border-inline-end: 1px solid var(--line);
}

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

.number-item strong {
  display: block;
  color: var(--copper-2);
  font-family: var(--font-en);
  font-weight: 400;
  font-size: clamp(46px, 6.2vw, 96px);
  line-height: .9;
}

.number-item span {
  color: var(--ink-soft);
  line-height: 1.8;
}



.residence-card {
  border-top: 1px solid var(--line);
}

















.service-row {
  display: grid;
  grid-template-columns: 90px minmax(260px, .7fr) minmax(260px, 1fr);
  gap: clamp(22px, 4vw, 72px);
  align-items: start;
  padding: clamp(28px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--line);
}

.service-row > span {
  color: var(--copper-2);
  font-family: var(--font-en);
  font-size: 22px;
}

.service-row h3 {
  margin: 0 0 9px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 400;
}

.service-row p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.9;
}

.request-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, .28);
}

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

.request-form label {
  display: grid;
  gap: 9px;
  color: var(--dark-soft);
}

.request-form label span {
  font-size: 13px;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(29, 24, 18, .28);
  background: transparent;
  color: var(--dark);
  padding: 13px 0;
  outline: none;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-bottom-color: var(--copper);
}

.check-line {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 12px !important;
  line-height: 1.75;
}

.check-line input {
  width: 18px;
  min-width: 18px;
}

.request-form .check-line a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hp-field {
  position: absolute !important;
  inset-inline-start: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-success,
.form-error {
  padding: 14px 16px;
  line-height: 1.7;
}

.form-success {
  background: rgba(36, 96, 68, .14);
  color: #205f41;
}

.form-error {
  background: rgba(130, 42, 33, .12);
  color: #8b2e22;
}

.form-submit {
  margin-top: 8px;
  width: fit-content;
}

.faq-list {
  width: min(920px, 90vw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

.faq-question {
  width: 100%;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  text-align: start;
  font-size: clamp(22px, 2.55vw, 36px);
}

.faq-question i {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 1px;
  background: var(--copper-2);
  transition: transform .45s var(--ease);
}

.faq-question i::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question i::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 30px;
  color: var(--ink-soft);
  line-height: 2;
}




.maintenance-screen {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    linear-gradient(rgba(23, 20, 16, .72), rgba(23, 20, 16, .88)),
    url("/storage/public-site/demo/aldiyar-hero-residence.jpg") center / cover;
}

.maintenance-card {
  width: min(720px, 92vw);
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid var(--line);
  background: rgba(23, 20, 16, .68);
  backdrop-filter: blur(18px);
  text-align: center;
}

.maintenance-card h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 86px);
  line-height: 1;
  font-weight: 400;
}

.maintenance-card p {
  color: var(--ink-soft);
  line-height: 1.8;
}

.split-unit {
  display: inline-block;
  will-change: transform, opacity;
}


[data-motion],
.section-line,
.residence-card,
.service-row,
.faq-item,
.number-item {
  will-change: transform, opacity;
}

@media (max-width: 980px) {




  .number-item {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .number-item:last-child {
    border-bottom: 0;
  }

  .service-row {
    grid-template-columns: 60px 1fr;
  }

  .service-row > p {
    grid-column: 2;
  }

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

@media (max-width: 680px) {
  :root {
    --container: min(92vw, 1340px);
  }

  .site-header {
    padding: 10px 0;
    align-items: center;
    gap: 12px;
    transform: none !important;
  }

  .aldiyar-public::before {
    height: 72px;
    background: linear-gradient(
      180deg,
      rgba(14, 12, 9, .72) 0%,
      rgba(14, 12, 9, .34) 52%,
      rgba(14, 12, 9, 0) 100%
    );
  }

  /* Phase MOBILE_HEADER_BRAND_SIZE_01 */
  .brand-mark {
    max-width: calc(100vw - 76px);
    gap: 8px;
    position: relative;
    z-index: 146;
  }

  .brand-icon {
    width: 25px;
  }

  .is-rtl .brand-icon {
    width: 24px;
  }

  .brand-mark span {
    font-size: clamp(17px, 4.45vw, 21px);
    line-height: 1;
    letter-spacing: -.02em;
  }

  .is-rtl .brand-mark span {
    font-size: clamp(23px, 6.3vw, 31px);
    line-height: 1.04;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 146;
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(244, 239, 231, .42);
    border-radius: 999px;
    background: rgba(12, 10, 8, .42);
    color: var(--ink);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    display: block;
    width: 15px;
    height: 1px;
    background: currentColor;
    transition: transform .28s var(--ease), opacity .28s var(--ease);
  }

  .is-mobile-nav-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .is-mobile-nav-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .is-mobile-nav-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 138;
    display: block;
    border: 0;
    background:
      radial-gradient(circle at 50% 0%, rgba(206, 176, 118, .14), transparent 34%),
      rgba(8, 7, 6, .58);
    opacity: 0;
    pointer-events: none;
    transition: opacity .34s var(--ease);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .mobile-nav-backdrop[hidden] {
    display: none;
  }

  .is-mobile-nav-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .aldiyar-public .elyse-header .site-nav {
    position: fixed;
    top: 0;
    bottom: auto;
    right: 0;
    z-index: 140;
    width: min(86vw, 360px);
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    padding: clamp(92px, 12vh, 116px) 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: rgba(250, 246, 238, .92);
    text-align: start;
    font-family: var(--font-ui, "Inter 28"), sans-serif;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .035em;
    text-transform: uppercase;
    background:
      linear-gradient(180deg, rgba(28, 24, 18, .98) 0%, rgba(14, 12, 10, .96) 100%),
      radial-gradient(circle at 90% 4%, rgba(204, 170, 110, .18), transparent 32%);
    border-inline-start: 1px solid rgba(244, 239, 231, .13);
    box-shadow: -28px 0 90px rgba(0, 0, 0, .42);
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(110%, 0, 0);
    transition:
      transform .42s var(--ease),
      visibility 0s linear .42s;
    will-change: transform;
  }

  .aldiyar-public .elyse-header .site-nav::before {
    content: "";
    position: absolute;
    top: 72px;
    inset-inline: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 181, 120, .55), transparent);
  }

  .aldiyar-public.is-rtl .elyse-header .site-nav {
    right: auto;
    left: 0;
    font-family: var(--font-ar);
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    border-inline-start: 0;
    border-inline-end: 1px solid rgba(244, 239, 231, .13);
    box-shadow: 28px 0 90px rgba(0, 0, 0, .42);
    transform: translate3d(-110%, 0, 0);
  }

  .aldiyar-public.is-mobile-nav-open .elyse-header .site-nav,
  .aldiyar-public.is-rtl.is-mobile-nav-open .elyse-header .site-nav {
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition:
      transform .42s var(--ease),
      visibility 0s linear 0s;
  }

  .aldiyar-public .elyse-header .site-nav a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    border-bottom: 1px solid rgba(244, 239, 231, .105);
    color: inherit;
  }

  .aldiyar-public .elyse-header .site-nav a::before {
    display: none;
    content: none;
  }

  .aldiyar-public .elyse-header .site-nav a::after {
    display: none;
  }

  .aldiyar-public .elyse-header .site-nav a:last-child {
    color: rgba(244, 239, 231, .68);
  }

  .aldiyar-public .elyse-header .site-nav .nav-cta,
  .aldiyar-public.is-rtl .elyse-header .site-nav .nav-cta {
    min-height: 50px;
    margin-top: 20px;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid rgba(214, 181, 120, .62);
    border-radius: 999px;
    background: rgba(214, 181, 120, .105);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
    color: rgba(255, 250, 240, .94);
    font-size: inherit;
    line-height: inherit;
  }

  .aldiyar-public .elyse-header .site-nav .nav-cta::before {
    display: none;
  }

  .hero-actions {
    justify-content: flex-start;
  }


  .section-title {
    font-size: clamp(42px, 14vw, 76px);
  }



  /* Phase OWNER_CTA_EN_TITLE_TUNE_01 mobile */
  .is-ltr #owner-cta-title {
    font-size: clamp(23px, 6.6vw, 32px);
    line-height: .98;
  }

}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Phase 10J requested Elyse fixes */
/* Phase 10J requested Elyse fixes */

.elyse-map-page {
  background: var(--deep);
  color: var(--ink);
}

.elyse-header .site-nav {
  font-family: var(--font-ui, "Inter 28"), sans-serif;
  font-size: clamp(10px, .58vw, 12px);
  font-weight: 600;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: .055em;
}

.is-rtl .elyse-header .site-nav {
  font-family: var(--font-ar);
  font-size: clamp(14px, .95vw, 17px);
  font-weight: 500;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
}

.elyse-header .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 6px 16px;
  line-height: inherit;
}

.elyse-header .nav-cta::after {
  display: none;
}

.is-rtl .elyse-header .nav-cta {
  padding: 6px 16px;
  line-height: inherit;
}


.elyse-label {
  margin: 0;
  color: var(--copper-2);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.35;
}

/* Phase ARABIC_TYPOGRAPHY_SYSTEM_01 */
.aldiyar-public.is-rtl :where(.eyebrow, .elyse-label, .residence-section-note, .scroll-residence-copy small, .scroll-residence-features li, .belief-grid span) {
  font-size: var(--ar-label-size);
  line-height: var(--ar-label-line);
  letter-spacing: 0;
}

.aldiyar-public.is-rtl :where(.standard-lead, .belief-grid p, .service-story-lead, .story-summary-mask, .owner-cta-copy > p:last-child, .scroll-residence-copy p, .about-frame-copy p, .faq-answer p, .hero-corner .hero-text, .closing-hero p, .closing-copy p) {
  font-size: var(--ar-body-size);
  line-height: var(--ar-body-line);
}

.aldiyar-public.is-rtl :where(.scroll-residence-copy a) {
  font-size: var(--ar-meta-size);
  line-height: var(--ar-meta-line);
}

.aldiyar-public.is-rtl .request-form label span,
.aldiyar-public.is-rtl .request-form input,
.aldiyar-public.is-rtl .request-form select,
.aldiyar-public.is-rtl .request-form textarea,
.aldiyar-public.is-rtl .check-line,
.aldiyar-public.is-rtl .form-submit {
  font-size: var(--ar-form-size);
  line-height: var(--ar-form-line);
}

@media (max-width: 680px) {
  .aldiyar-public.is-rtl :where(.eyebrow, .elyse-label, .residence-section-note, .scroll-residence-copy small, .scroll-residence-features li, .belief-grid span) {
    font-size: var(--ar-label-size-mobile);
    line-height: var(--ar-label-line);
  }

  .aldiyar-public.is-rtl :where(.standard-lead, .belief-grid p, .service-story-lead, .story-summary-mask, .owner-cta-copy > p:last-child, .scroll-residence-copy p, .about-frame-copy p, .faq-answer p, .hero-corner .hero-text, .closing-hero p, .closing-copy p) {
    font-size: var(--ar-body-size-mobile);
    line-height: 1.95;
  }

  .aldiyar-public.is-rtl :where(.scroll-residence-copy a) {
    font-size: var(--ar-meta-size-mobile);
    line-height: var(--ar-meta-line);
  }

  .aldiyar-public.is-rtl .request-form label span,
  .aldiyar-public.is-rtl .request-form input,
  .aldiyar-public.is-rtl .request-form select,
  .aldiyar-public.is-rtl .request-form textarea,
  .aldiyar-public.is-rtl .check-line,
  .aldiyar-public.is-rtl .form-submit {
    font-size: var(--ar-meta-size-mobile);
    line-height: var(--ar-form-line);
  }
}
/* End Phase ARABIC_TYPOGRAPHY_SYSTEM_01 */

.elyse-section-head {
  width: var(--container);
  margin: 0 auto clamp(42px, 7vw, 88px);
  display: grid;
  grid-template-columns: minmax(120px, .28fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
}

.about-orbit {
  background: var(--deep);
}





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







.elyse-stats {
  width: var(--container);
  margin: clamp(50px, 7vw, 90px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Phase BELIEFS STANDARD CLEAN 01 */
.aldiyar-standard-section {
  position: relative;
  background: var(--deep);
  color: var(--ink);
  overflow: hidden;
}

.aldiyar-standard-section > .section-line {
  opacity: .72;
}

.standard-editorial {
  width: var(--container);
  margin: 0 auto clamp(54px, 7vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(340px, .72fr);
  gap: clamp(38px, 7vw, 120px);
  align-items: center;
}

.standard-copy {
  max-width: 980px;
}

.standard-copy .elyse-label {
  margin-bottom: clamp(24px, 3.6vw, 54px);
}

.standard-copy .section-title {
  max-width: 940px;
  font-size: clamp(52px, 6.1vw, 112px);
  line-height: .96;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.is-rtl .standard-copy .section-title {
  font-size: clamp(64px, 6.8vw, 126px);
  line-height: 1.04;
  letter-spacing: -.038em;
}

.standard-lead {
  width: min(100%, 650px);
  margin: clamp(30px, 4.2vw, 58px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.9;
}

.is-rtl .standard-lead {
  font-size: var(--ar-body-size);
  line-height: var(--ar-body-line);
}

.standard-media {
  position: relative;
  min-height: clamp(520px, 58vw, 760px);
}

.standard-image {
  position: absolute;
  overflow: hidden;
  background: rgba(244, 239, 231, .04);
}

.standard-image-main {
  inset-block-start: 0;
  inset-inline-end: 0;
  width: 72%;
  height: 88%;
  border-radius: clamp(20px, 1.8vw, 32px);
}

.standard-image-float {
  z-index: 2;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 48%;
  height: 46%;
  border: 10px solid var(--deep);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
}

.standard-image img {
  position: absolute;
  inset: -8% 0 auto 0;
  width: 100%;
  max-width: none;
  height: 116%;
  object-fit: cover;
  object-position: center 58%;
  transform-origin: center;
  display: block;
  will-change: transform;
}

.standard-image-float img {
  object-position: center 62%;
}

.belief-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 239, 231, .16);
  border-bottom: 1px solid rgba(244, 239, 231, .16);
}

.belief-grid article {
  position: relative;
  min-height: clamp(300px, 26vw, 430px);
  padding: clamp(26px, 3.2vw, 48px);
  border-inline-end: 1px solid rgba(244, 239, 231, .14);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 239, 231, .045), rgba(244, 239, 231, .012));
}

.belief-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(206, 176, 118, .12), transparent 46%);
  opacity: 0;
  transition: opacity .45s var(--ease);
}

.belief-grid article:hover::before {
  opacity: 1;
}

.belief-grid article:last-child {
  border-inline-end: 0;
}

.belief-grid span {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(46px, 5vw, 92px);
  color: var(--copper-2);
  font-family: var(--font-en);
  font-size: clamp(13px, .9vw, 16px);
  letter-spacing: .16em;
}

.belief-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 260px;
  font-size: clamp(27px, 2.55vw, 45px);
  line-height: 1.04;
  font-weight: 400;
  text-wrap: balance;
}

.is-rtl .belief-grid h3 {
  font-size: clamp(32px, 3vw, 54px);
  line-height: 1.12;
}

.belief-grid p {
  position: relative;
  z-index: 1;
  margin: clamp(22px, 2vw, 32px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.9;
}

.is-rtl .belief-grid p {
  font-size: var(--ar-body-size);
  line-height: var(--ar-body-line);
}

/* Phase STANDARD LTR FONT TUNE DESKTOP 01 */
@media (min-width: 761px) {
  .is-ltr .aldiyar-standard-section .standard-copy .elyse-label {
    font-size: clamp(12px, .78vw, 14px);
    line-height: 1.32;
  }

  .is-ltr .aldiyar-standard-section .standard-copy .section-title {
    max-width: 760px;
    font-size: clamp(40px, 4.55vw, 82px);
    line-height: .99;
    letter-spacing: -.046em;
  }

  .is-ltr .aldiyar-standard-section .standard-lead {
    width: min(100%, 510px);
    font-size: clamp(15px, 1.02vw, 18px);
    line-height: 1.74;
  }

  .is-ltr .aldiyar-standard-section .belief-grid span {
    font-size: clamp(11px, .72vw, 13px);
    letter-spacing: .14em;
  }

  .is-ltr .aldiyar-standard-section .belief-grid h3 {
    max-width: 230px;
    font-size: clamp(21px, 1.78vw, 32px);
    line-height: 1.1;
    letter-spacing: -.035em;
  }

  .is-ltr .aldiyar-standard-section .belief-grid p {
    font-size: clamp(13px, .78vw, 14px);
    line-height: 1.66;
  }
}
/* End Phase STANDARD LTR FONT TUNE DESKTOP 01 */

@media (max-width: 1100px) {
  .standard-editorial {
    grid-template-columns: 1fr;
  }

  .standard-media {
    width: min(100%, 760px);
    margin-inline: auto;
  }

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

  .belief-grid article:nth-child(2) {
    border-inline-end: 0;
  }

  .belief-grid article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(244, 239, 231, .14);
  }
}

@media (max-width: 680px) {
  .aldiyar-standard-section {
    padding-top: 78px;
    padding-bottom: 88px;
  }

  .standard-editorial {
    display: block;
    margin-bottom: 42px;
  }

  .standard-copy .elyse-label {
    margin-bottom: 22px;
  }

  .standard-copy .section-title,
  .is-rtl .standard-copy .section-title {
    font-size: clamp(42px, 12.4vw, 68px);
    line-height: 1.04;
    letter-spacing: -.04em;
  }

  .standard-lead {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.95;
  }

  .is-rtl .standard-lead {
    margin-top: 24px;
    font-size: var(--ar-body-size-mobile);
    line-height: 1.95;
  }

  .standard-media {
    min-height: 470px;
    margin-top: 38px;
  }

  .standard-image-main {
    width: 78%;
    height: 82%;
    border-radius: 22px;
  }

  .standard-image-float {
    width: 58%;
    height: 42%;
    border-width: 7px;
    border-radius: 18px;
  }

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

  .belief-grid article,
  .belief-grid article:nth-child(2),
  .belief-grid article:nth-child(-n+2) {
    min-height: 0;
    padding: 26px 0 28px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(244, 239, 231, .14);
    background: transparent;
  }

  .belief-grid article:last-child {
    border-bottom: 0;
  }

  .belief-grid span {
    margin-bottom: 22px;
  }

  .belief-grid h3,
  .is-rtl .belief-grid h3 {
    max-width: none;
    font-size: clamp(30px, 9vw, 46px);
  }

  .belief-grid p {
    font-size: 15px;
    line-height: 1.95;
  }

  .is-rtl .belief-grid p {
    font-size: var(--ar-body-size-mobile);
    line-height: 1.95;
  }
}
/* End Phase BELIEFS STANDARD CLEAN 01 */

/* Phase SERVICES ELYSE EXACT MOTION CLEAN 07G */
.service-scroll-story-section {
  min-height: 100svh;
  padding-top: clamp(78px, 9vw, 138px);
  padding-bottom: clamp(65px, 8vw, 120px);
  overflow: hidden;
}

.service-story-head {
  margin-bottom: clamp(42px, 6vw, 86px);
}

.service-story-lead {
  margin: clamp(18px, 2vw, 26px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.8;
}

.service-story-pin {
  position: relative;
  width: var(--container);
  height: 100svh;
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  overflow: visible;
}

.service-story-item {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(500px, .96fr) minmax(380px, 1.04fr);
  gap: clamp(24px, 4vw, 66px);
  align-items: center;
  min-height: 100svh;
  opacity: 0;
  pointer-events: none;
}

.service-story-item.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Phase OWNER_SERVICE_VIEWPORT_ENTRY_01 */
@media (min-width: 981px) {
  .service-scroll-story-section.is-service-story-entry-waiting .service-story-item:first-of-type .service-story-progress,
  .service-scroll-story-section.is-service-story-entry-waiting .service-story-item:first-of-type .story-title-mask,
  .service-scroll-story-section.is-service-story-entry-waiting .service-story-item:first-of-type .story-summary-mask,
  .service-scroll-story-section.is-service-story-entry-waiting .service-story-item:first-of-type .service-story-media {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
  }
}
/* End Phase OWNER_SERVICE_VIEWPORT_ENTRY_01 */

.service-story-copy {
  position: relative;
  align-self: center;
  padding-inline-start: clamp(28px, 4vw, 58px);
}

.is-rtl .service-story-copy {
  padding-inline-start: clamp(28px, 4vw, 58px);
  padding-inline-end: 0;
}

.service-story-progress {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, .22);
  overflow: hidden;
  pointer-events: none;
}

.is-rtl .service-story-progress {
  inset-inline-start: 0;
  inset-inline-end: auto;
}

.service-story-progress > span {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .98);
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform;
}

.service-story-fixed-progress {
  display: none;
}

.service-story-fixed-progress > span {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .98);
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform;
}

.service-story-copy h2 {
  margin: 0 0 clamp(32px, 4vw, 56px);
  font-size: clamp(54px, 6.6vw, 122px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.is-ltr .service-story-copy h2 {
  font-size: clamp(46px, 4.95vw, 94px);
  letter-spacing: -.06em;
}

.is-rtl .service-story-copy h2 {
  text-transform: none;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.story-title-mask {
  display: grid;
  gap: .015em;
  overflow: visible;
}

.story-title-line {
  display: block;
  overflow: hidden;
  padding-block: .08em;
  margin-block: -.08em;
}

.story-title-line > span {
  display: block;
  line-height: inherit;
  will-change: transform;
}

.story-summary-mask {
  margin: -.08em 0;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 23px);
  line-height: 1.55;
  overflow: hidden;
  padding-block: .08em;
}

.is-rtl .story-summary-mask {
  text-align: justify;
  text-align-last: start;
  text-justify: inter-word;
}

.is-ltr .story-summary-mask {
  text-align: start;
  text-align-last: auto;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.story-summary-mask > span {
  display: block;
  line-height: inherit;
  text-align: inherit;
  text-align-last: inherit;
  will-change: transform;
}

.service-story-media {
  position: relative;
  align-self: center;
  height: min(76vh, 770px);
  min-height: 560px;
}

.service-story-media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
}

.story-large,
.story-small {
  position: absolute;
  overflow: hidden;
  clip-path: inset(0% 0% 0% 0%);
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: clip-path, transform, opacity;
}

.story-large {
  --story-mask-gradient: linear-gradient(0deg, #000 0% 100%);
  -webkit-mask-image: var(--story-mask-gradient);
  mask-image: var(--story-mask-gradient);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.story-large img,
.story-small img {
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: transform;
}

.story-large {
  z-index: 1;
  inset: 0 0 auto auto;
  width: 74%;
  height: 102%;
}

.is-rtl .story-large {
  inset: 0 auto auto 0;
}

.story-small {
  z-index: 40;
  width: 36%;
  height: 62%;
  inset: 24% auto auto 14%;
}

.is-rtl .story-small {
  inset: 24% 14% auto auto;
}

@media (max-width: 980px) {
  .service-story-head {
    grid-template-columns: 1fr;
  }

  .service-story-item {
    position: absolute;
    inset: 0;
    display: grid;
    min-height: auto;
  }

  .service-story-item.is-active {
    display: grid;
  }
}

@media (min-width: 681px) and (max-width: 900px) {
  .service-story-item {
    grid-template-columns: minmax(240px, .7fr) minmax(350px, 1.3fr);
    gap: 28px;
  }

  .service-story-copy h2 {
    font-size: clamp(40px, 8vw, 72px);
  }

  .service-story-media {
    height: 560px;
    min-height: 560px;
  }

  .story-small {
    width: 32%;
    height: 64%;
  }
}

@media (max-width: 680px) {
  .service-story-item {
    grid-template-columns: 1fr;
  }

  .service-story-media {
    height: 430px;
    min-height: 430px;
  }
}

/* Phase MOBILE OWNER SERVICE COMPACT 01 */
/* MOBILE_OWNER_SERVICE_AR_TUNE_01 */
/* OWNER_SERVICE_SUMMARY_AR_JUSTIFY_01 */
/* OWNER_SERVICE_EN_MICRO_GAP_01 */
@media (max-width: 980px) {
  .service-scroll-story-section {
    min-height: auto;
    padding-top: clamp(58px, 9vw, 82px);
    padding-bottom: clamp(42px, 8vw, 70px);
    overflow: hidden;
  }

  .service-story-head {
    margin-bottom: clamp(18px, 4vw, 30px);
    transition: opacity .28s var(--ease);
  }

  .service-story-pin {
    height: calc(100svh - 96px);
    min-height: 560px;
    padding-block: 24px 14px;
    box-sizing: border-box;
    overflow: hidden;
    transition: opacity .62s var(--ease);
  }

  .service-story-fixed-progress {
    position: absolute;
    z-index: 8;
    display: block;
    width: 2px;
    height: var(--service-story-fixed-progress-height, 120px);
    inset-block-start: var(--service-story-fixed-progress-top, 24px);
    inset-inline-start: var(--service-story-fixed-progress-inline, 18px);
    background: rgba(255, 255, 255, .22);
    overflow: hidden;
    pointer-events: none;
  }

  /* Phase OWNER_RESPONSIVE_ORIGINAL_PROGRESS_HIDE_01 */
  .service-story-item .service-story-progress {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .is-rtl .service-story-item .service-story-progress {
    inset-inline-start: 0;
    inset-inline-end: auto;
  }

  /* Phase OWNER_SERVICE_VIEWPORT_ENTRY_01 */
  /* Phase MOBILE_OWNER_SERVICE_STANDARD_FADE_01 */
  /* Phase MOBILE_SERVICE_PIN_SAFE_INNER_REVEAL_01 */
  .service-scroll-story-section.is-mobile-service-entry-pending .service-story-item:first-of-type .service-story-copy,
  .service-scroll-story-section.is-mobile-service-entry-pending .service-story-item:first-of-type .service-story-media,
  .service-scroll-story-section.is-mobile-service-entry-pending .service-story-fixed-progress {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
  }
  /* End Phase MOBILE_SERVICE_PIN_SAFE_INNER_REVEAL_01 */
  /* End Phase MOBILE_OWNER_SERVICE_STANDARD_FADE_01 */
  /* End Phase OWNER_SERVICE_VIEWPORT_ENTRY_01 */

  .service-story-lead {
    margin-top: 10px;
    font-size: clamp(15px, 3.2vw, 18px);
    line-height: 1.55;
  }

  .service-story-item {
    width: 100%;
    min-height: auto;
    height: 100%;
    box-sizing: border-box;
    padding-block-start: clamp(22px, 5svh, 42px);
    grid-template-rows: minmax(188px, 188px) minmax(0, 1fr);
    align-content: center;
    align-items: stretch;
    gap: clamp(14px, 3.2vw, 22px);
  }

  .service-story-copy,
  .is-rtl .service-story-copy {
    align-self: stretch;
    display: grid;
    align-content: start;
    min-height: 188px;
    padding-inline-start: 18px;
    padding-inline-end: 18px;
  }

  .service-story-copy h2,
  .is-ltr .service-story-copy h2,
  .is-rtl .service-story-copy h2 {
    margin-bottom: clamp(10px, 2.4vw, 18px);
    font-size: clamp(36px, 8vw, 62px);
    line-height: 1.06;
  }

  .story-summary-mask {
    width: min(100%, 440px);
    max-width: 440px;
    font-size: clamp(14px, 2.9vw, 17px);
    line-height: 1.48;
  }

  .is-rtl .story-summary-mask {
    margin-inline-start: auto;
    margin-inline-end: 0;
    font-size: var(--ar-body-size-mobile);
    line-height: 1.75;
  }

  .is-ltr .story-summary-mask {
    margin-inline-start: 0;
    margin-inline-end: auto;
  }

  .service-story-media {
    width: 100%;
    height: min(49svh, 430px);
    min-height: 310px;
    align-self: start;
    margin-top: 0;
  }

  .story-large {
    width: 72%;
    height: 108%;
  }

  .story-small {
    width: 36%;
    height: 54%;
    inset: 34% auto auto 10%;
  }

  .is-rtl .story-small {
    inset: 34% 10% auto auto;
  }
}

@media (max-width: 680px) {
  .service-scroll-story-section {
    padding-top: 54px;
    padding-bottom: 44px;
  }

  .service-story-head {
    margin-bottom: 14px;
  }

  .service-story-head .section-title {
    font-size: clamp(38px, 11vw, 56px);
    line-height: 1.02;
  }

  .is-rtl .service-story-head .section-title {
    font-size: clamp(46px, 13.4vw, 64px);
    line-height: 1.08;
  }

  .service-story-lead {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.46;
  }

  .service-story-pin {
    height: calc(100svh - 118px);
    min-height: 500px;
    padding-block: 8px;
  }

  .service-story-item {
    padding-block-start: clamp(26px, 6svh, 44px);
    grid-template-rows: minmax(176px, 176px) minmax(0, 1fr);
    gap: 10px;
  }

  .service-story-copy,
  .is-rtl .service-story-copy {
    display: grid;
    grid-template-columns: minmax(104px, .66fr) minmax(164px, 1.08fr);
    align-items: start;
    align-self: stretch;
    min-height: 176px;
    column-gap: clamp(12px, 3.8vw, 18px);
    padding-inline-start: 14px;
    padding-inline-end: 14px;
  }

  .service-story-copy h2,
  .is-ltr .service-story-copy h2,
  .is-rtl .service-story-copy h2 {
    grid-column: 1;
    margin-bottom: 0;
    font-size: clamp(32px, 9.4vw, 44px);
    line-height: 1.06;
  }

  .story-summary-mask {
    grid-column: 2;
    width: min(100%, 340px);
    max-width: 340px;
    margin-top: .12em;
    font-size: 14px;
    line-height: 1.42;
  }

  .is-rtl .story-summary-mask,
  .is-ltr .story-summary-mask {
    margin-inline-start: 0;
    margin-inline-end: 0;
  }

  .is-rtl .story-summary-mask {
    font-size: var(--ar-body-size-mobile);
    line-height: 1.75;
  }

  .is-ltr .service-story-copy {
    grid-template-columns: minmax(148px, .98fr) minmax(138px, .84fr);
    column-gap: clamp(10px, 3vw, 14px);
    padding-inline-end: 8px;
  }

  .is-ltr .service-story-copy h2 {
    font-size: clamp(29px, 8.4vw, 40px);
    letter-spacing: -.055em;
  }

  .is-ltr .story-summary-mask {
    transform: translateX(0);
    width: min(100%, 268px);
    max-width: 268px;
  }

  .service-story-media {
    height: min(38svh, 300px);
    min-height: 250px;
    align-self: start;
    margin-top: 0;
  }

  .story-large {
    width: 73%;
    height: 112%;
  }

  .story-small {
    width: 38%;
    height: 52%;
    inset: 36% auto auto 8%;
  }

  .is-rtl .story-small {
    inset: 36% 8% auto auto;
  }
}
/* End Phase MOBILE OWNER SERVICE COMPACT 01 */


/* Phase OWNER CTA AFTER SERVICES CLEAN 04 */
.owner-cta-section {
  width: 100%;
  background: transparent;
  color: var(--ink);
  padding: clamp(22px, 2.6vw, 42px) 0;
  overflow: hidden;
}

.owner-cta-panel {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 90px);
}

.owner-cta-copy {
  min-width: 0;
  max-width: calc(100% - 260px);
}

.owner-cta-copy .elyse-label {
  display: none;
}

.owner-cta-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.15vw, 56px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.is-rtl .owner-cta-copy h2 {
  letter-spacing: -.03em;
  line-height: 1.08;
  text-transform: none;
}

.owner-cta-copy > p:last-child {
  margin: clamp(8px, .75vw, 12px) 0 0;
  max-width: none;
  color: var(--ink-soft);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.55;
  white-space: nowrap;
}


/* Phase OWNER_CTA_EN_TITLE_TUNE_01 */
.is-ltr #owner-cta-title {
  font-size: clamp(28px, 3.9vw, 56px);
  line-height: .96;
  letter-spacing: -.04em;
  text-transform: none;
}

.owner-cta-actions {
  flex: 0 0 auto;
  align-self: center;
}

.owner-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 clamp(28px, 3vw, 46px);
  background: #d6a17e;
  border: 1px solid #d6a17e;
  border-radius: 999px;
  color: var(--dark);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1;
  letter-spacing: .035em;
  text-transform: uppercase;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}

.is-rtl .owner-cta-button {
  letter-spacing: 0;
  font-size: clamp(19px, 1.55vw, 25px);
}

.owner-cta-button:hover {
  background: transparent;
  border-color: #d6a17e;
  color: #d6a17e;
  transform: translateY(-3px);
}

@media (max-width: 980px) {
  .owner-cta-panel {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .owner-cta-copy {
    max-width: 100%;
  }

  .owner-cta-copy h2,
  .owner-cta-copy > p:last-child {
    white-space: normal;
  }

  .owner-cta-copy h2 {
    font-size: clamp(34px, 9vw, 62px);
  }

  .owner-cta-actions {
    width: 100%;
  }

  .owner-cta-button {
    width: 100%;
  }
}
/* End Phase OWNER CTA AFTER SERVICES CLEAN 04 */

.elyse-faq .faq-question {
  display: grid;
  grid-template-columns: 90px 1fr 28px;
}

.elyse-faq .faq-question strong {
  font-weight: 400;
}

/* Phase FAQ_LTR_FONT_TUNE_01 */
.is-ltr .elyse-faq .section-title {
  font-size: clamp(38px, 5.25vw, 86px);
  line-height: .98;
  letter-spacing: -.048em;
}

.is-ltr .elyse-faq .faq-question {
  font-size: clamp(20px, 1.75vw, 30px);
  line-height: 1.1;
}

.is-ltr .elyse-faq .faq-question strong {
  font-family: "PP Fragment Glare", "PP Fragment Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.035em;
}

.is-ltr .elyse-faq .faq-answer p {
  font-size: clamp(14px, .95vw, 17px);
  line-height: 1.72;
}

@media (max-width: 680px) {
  .is-ltr .elyse-faq .section-title {
    font-size: clamp(34px, 10.2vw, 56px);
    line-height: 1.02;
  }

  .is-ltr .elyse-faq .faq-question {
    grid-template-columns: 54px 1fr 24px;
    gap: 14px;
    padding: 24px 0;
    font-size: clamp(20px, 5.9vw, 30px);
    line-height: 1.08;
  }

  .is-ltr .elyse-faq .faq-answer p {
    font-size: 14px;
    line-height: 1.62;
  }
}
/* End Phase FAQ_LTR_FONT_TUNE_01 */

.elyse-closing {
  background: var(--cream);
  color: var(--dark);
  padding-bottom: clamp(72px, 8vw, 112px);
}

/* Phase CLOSING_OVER_FAQ_SCROLL_01 */
.elyse-faq {
  position: relative;
  z-index: 1;
}

.elyse-closing {
  position: relative;
  z-index: 3;
  isolation: isolate;
}

.elyse-closing.is-closing-over-faq-active {
  box-shadow: 0 -34px 86px rgba(14, 12, 9, .24);
}

@media (max-width: 680px) {
  .elyse-closing {
    padding-top: 62px;
    padding-bottom: 40px;
  }

  .closing-hero {
    margin-bottom: 38px;
    gap: 28px;
  }

  .elyse-closing .closing-hero p,
  .elyse-closing .closing-copy p {
    line-height: 1.75;
  }

  .closing-grid {
    gap: 28px;
  }

  .closing-copy h3 {
    margin: 18px 0 16px;
  }

  .elyse-closing .request-form {
    gap: 14px;
    padding: 22px;
  }

  .elyse-closing.is-closing-over-faq-active {
    box-shadow: 0 -22px 58px rgba(14, 12, 9, .2);
  }
}
/* End Phase CLOSING_OVER_FAQ_SCROLL_01 */

.elyse-closing .section-title,
.elyse-closing h3 {
  color: var(--dark);
}

.closing-hero {
  width: var(--container);
  margin: 0 auto clamp(60px, 8vw, 110px);
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: clamp(34px, 7vw, 110px);
  align-items: end;
}

.closing-hero p,
.closing-copy p {
  margin: 0;
  color: var(--dark-soft);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 2;
}

.closing-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
}

.closing-copy h3 {
  margin: clamp(24px, 4vw, 44px) 0 24px;
  font-size: clamp(46px, 7vw, 112px);
  line-height: .95;
  font-weight: 400;
  letter-spacing: -.045em;
}

.is-rtl .closing-copy h3 {
  letter-spacing: -.035em;
}

.elyse-closing .request-form {
  background: rgba(255, 255, 255, .24);
}



/* Phase CLOSING_AR_FONT_TUNE_01 */
.is-rtl .elyse-closing .elyse-label {
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.45;
}

.is-rtl .elyse-closing .closing-hero p,
.is-rtl .elyse-closing .closing-copy p {
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 2.05;
}

.is-rtl .elyse-closing .request-form label {
  gap: 11px;
}

.is-rtl .elyse-closing .request-form label span {
  font-size: clamp(17px, 1.1vw, 20px);
  line-height: 1.55;
  color: rgba(29, 24, 18, .78);
}

.is-rtl .elyse-closing .request-form input,
.is-rtl .elyse-closing .request-form select,
.is-rtl .elyse-closing .request-form textarea {
  font-size: clamp(18px, 1.12vw, 21px);
  line-height: 1.65;
  padding: 15px 0;
}

.is-rtl .elyse-closing .check-line {
  align-items: flex-start;
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.85;
}

.is-rtl .elyse-closing .check-line span {
  font-size: inherit;
  line-height: inherit;
}

.is-rtl .elyse-closing .form-submit {
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.35;
}


@media (max-width: 680px) {
  .is-rtl .elyse-closing .elyse-label {
    font-size: clamp(21px, 5.6vw, 27px);
  }

  .is-rtl .elyse-closing .closing-hero p,
  .is-rtl .elyse-closing .closing-copy p {
    font-size: clamp(18px, 4.7vw, 22px);
  }

  .is-rtl .elyse-closing .request-form label {
    gap: 8px;
  }

  .is-rtl .elyse-closing .request-form label span,
  .is-rtl .elyse-closing .check-line,
  .is-rtl .elyse-closing .form-submit {
    font-size: clamp(16px, 4.15vw, 19px);
  }

  .is-rtl .elyse-closing .request-form input,
  .is-rtl .elyse-closing .request-form select,
  .is-rtl .elyse-closing .request-form textarea {
    font-size: clamp(17px, 4.3vw, 20px);
  }
}
/* End Phase CLOSING_AR_FONT_TUNE_01 */

@media (max-width: 1100px) {
  .elyse-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .elyse-section-head,
  .closing-hero,
  .closing-grid {
    grid-template-columns: 1fr;
  }




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



  .elyse-faq .faq-question {
    grid-template-columns: 52px 1fr 24px;
  }
}
/* Phase 10K precision corrections */
/* Phase 10K precision corrections */


/* 2) About: remove top headline/line; keep image with side text only */
.about-orbit > .section-line,
.about-orbit > .elyse-section-head {
  display: none !important;
}

.about-orbit {
  padding-top: clamp(95px, 12vw, 180px);
}














/* Phase ABOUT DESKTOP CLEAN 03 */
.about-elyse-frame > .section-line,
.about-elyse-frame > .elyse-section-head {
  display: none !important;
}

.about-elyse-frame {
  padding-top: clamp(88px, 9vw, 142px);
  padding-bottom: clamp(76px, 8vw, 132px);
  overflow: visible;
}

.about-frame-layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(390px, 30vw, 480px) minmax(0, 1fr);
  column-gap: clamp(40px, 4vw, 66px);
  align-items: start;
}

.about-frame-title,
.about-frame-copy,
.about-frame-image {
  min-width: 0;
  box-sizing: border-box;
}

.about-frame-title {
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: end;
  width: min(100%, 430px);
  display: grid;
  align-content: start;
  padding: 0;
}

.about-frame-title .elyse-label {
  margin: 0 0 clamp(32px, 4.2vw, 60px);
}

.about-frame-title .section-title {
  margin: 0;
  max-width: 100%;
  overflow: visible;
  font-style: italic;
  font-size: clamp(50px, 4.9vw, 92px);
  line-height: .96;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.is-rtl .about-frame-title {
  width: min(100%, 440px);
}

.is-rtl .about-frame-title .section-title {
  max-width: 100%;
  font-style: normal;
  font-size: clamp(62px, 5.85vw, 106px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.about-frame-image {
  position: relative;
  z-index: 1;
  justify-self: center;
  align-self: start;
  width: 100%;
  height: clamp(600px, 60vw, 820px);
  overflow: hidden;
  isolation: isolate;
  background: rgba(244, 239, 231, .035);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, .24),
    0 0 0 1px rgba(244, 239, 231, .045);
  clip-path: inset(0% 0% 0% 0%);
}

.about-frame-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 10, 8, .04), transparent 34%, rgba(12, 10, 8, .18)),
    linear-gradient(90deg, rgba(12, 10, 8, .12), transparent 34%, rgba(12, 10, 8, .08));
}

.about-frame-image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform-origin: center bottom;
  will-change: transform;
}

.about-frame-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: start;
  width: min(100%, 445px);
  max-width: 445px;
  padding: clamp(102px, 10vw, 164px) 0 0;
}

.is-rtl .about-frame-copy {
  width: min(100%, 455px);
  max-width: 455px;
  padding-top: clamp(92px, 9vw, 150px);
}

.about-frame-copy p {
  margin: 0 0 clamp(20px, 2vw, 30px);
  color: rgba(244, 239, 231, .76);
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.95;
  text-wrap: pretty;
}

.is-rtl .about-frame-copy p {
  font-size: clamp(17px, 1.12vw, 21px);
  line-height: 2.02;
}

@media (min-width: 981px) and (max-width: 1240px) {
  .about-frame-layout {
    grid-template-columns: minmax(0, 1fr) clamp(340px, 31vw, 410px) minmax(0, 1fr);
    column-gap: clamp(30px, 3.2vw, 48px);
  }

  .about-frame-title {
    width: min(100%, 360px);
  }

  .is-rtl .about-frame-title {
    width: min(100%, 380px);
  }

  .about-frame-title .section-title {
    font-size: clamp(44px, 4.4vw, 68px);
  }

  .is-rtl .about-frame-title .section-title {
    font-size: clamp(52px, 5.15vw, 82px);
  }

  .about-frame-copy,
  .is-rtl .about-frame-copy {
    width: min(100%, 360px);
    max-width: 360px;
    padding-top: clamp(72px, 8vw, 124px);
  }

  .about-frame-copy p {
    font-size: 16px;
    line-height: 1.9;
  }

  .is-rtl .about-frame-copy p {
    font-size: 17px;
    line-height: 1.95;
  }
}








/* Phase RESIDENCES LUXURY CLEAN 07 */
.residence-scroll-section {
  position: relative;
  padding-top: clamp(96px, 8.5vw, 142px);
  padding-bottom: clamp(78px, 8vw, 132px);
  overflow: visible;
  overflow-x: clip;
  overflow-y: visible;
  max-width: 100%;
  background: var(--deep);
}

.residence-scroll-section > .section-line {
  width: var(--container);
  margin: 0 auto clamp(40px, 5vw, 74px);
}

.residences-head {
  width: var(--container);
  margin: 0 auto clamp(40px, 4.6vw, 68px);
  display: grid;
  grid-template-columns: minmax(0, .38fr) minmax(0, .62fr);
  column-gap: clamp(34px, 6vw, 104px);
  row-gap: clamp(22px, 2.4vw, 36px);
  align-items: end;
}

.residences-head .elyse-label {
  align-self: start;
  margin: 0;
}

.is-ltr .residence-scroll-section .residences-head .elyse-label {
  font-size: clamp(14px, 1.02vw, 18px);
  line-height: 1.32;
}

.residences-head .section-title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 5vw, 88px);
  line-height: .95;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.is-rtl .residences-head .section-title {
  font-size: clamp(60px, 6.6vw, 118px);
  line-height: 1.04;
  letter-spacing: -.038em;
}

.residence-section-note {
  grid-column: 2;
  max-width: 520px;
  margin: 0;
  color: rgba(244, 239, 231, .68);
  font-size: clamp(14px, .92vw, 16px);
  line-height: 1.78;
}

.is-rtl .residence-section-note {
  font-size: var(--ar-label-size);
  line-height: var(--ar-label-line);
}

.residence-pin {
  width: 100%;
  max-width: 100vw;
  min-height: 104svh;
  display: grid;
  place-items: center;
  overflow: visible !important;
  overflow-x: clip !important;
  overflow-y: visible !important;
  clip-path: inset(-260px 0 -320px 0);
}

.residence-track {
  position: relative !important;
  width: var(--container) !important;
  height: min(90vh, 820px) !important;
  min-height: 760px;
  display: block !important;
  overflow: visible !important;
  padding: 0 !important;
  margin-inline: auto !important;
}

.scroll-residence-card {
  position: absolute !important;
  top: 50%;
  left: 50%;
  width: clamp(335px, 28vw, 500px) !important;
  min-width: clamp(335px, 28vw, 500px) !important;
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  filter: brightness(.58) saturate(.88);
  transition:
    opacity .5s var(--ease),
    transform .65s var(--ease),
    filter .65s var(--ease);
}

.scroll-residence-card[data-slot="left"] {
  opacity: .38;
  pointer-events: auto;
  z-index: 2;
  transform: translate(calc(-50% - clamp(245px, 25vw, 400px)), -50%) scale(.7);
}

.scroll-residence-card[data-slot="center"] {
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
  filter: brightness(1) saturate(1);
  transform: translate(-50%, -50%) scale(1);
}

.scroll-residence-card[data-slot="right"] {
  opacity: .38;
  pointer-events: auto;
  z-index: 2;
  transform: translate(calc(-50% + clamp(245px, 25vw, 400px)), -50%) scale(.7);
}

.scroll-residence-card[data-slot="hidden-left"] {
  opacity: 0;
  z-index: 1;
  transform: translate(calc(-50% - clamp(520px, 55vw, 920px)), -50%) scale(.62);
}

.scroll-residence-card[data-slot="hidden-right"] {
  opacity: 0;
  z-index: 1;
  transform: translate(calc(-50% + clamp(520px, 55vw, 920px)), -50%) scale(.62);
}


.scroll-residence-image,
.scroll-residence-card.is-active .scroll-residence-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto !important;
  overflow: hidden;
  border-radius: clamp(18px, 1.7vw, 28px);
  background: rgba(244, 239, 231, .035);
  box-shadow:
    0 28px 68px rgba(0, 0, 0, .23),
    inset 0 0 0 1px rgba(244, 239, 231, .065);
  isolation: isolate;
}

.scroll-residence-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 10, 8, .01), transparent 56%, rgba(12, 10, 8, .13)),
    linear-gradient(90deg, rgba(12, 10, 8, .04), transparent 42%, rgba(12, 10, 8, .04));
}

.scroll-residence-image img {
  position: absolute;
  inset: -10% 0 auto 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center 78%;
  transform-origin: center;
  display: block;
}

.scroll-residence-copy {
  width: min(100%, 540px);
  margin: 24px auto 0 !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(244, 239, 231, .15);
  text-align: center;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}

.scroll-residence-copy small {
  display: block;
  color: rgba(214, 161, 126, .98);
  font-weight: 500;
  font-size: clamp(13px, .9vw, 16px);
  line-height: 1.65;
  letter-spacing: 0;
  word-spacing: .025em;
  margin-bottom: 14px !important;
  text-transform: none;
}

.is-rtl .scroll-residence-copy small {
  font-weight: 500;
  letter-spacing: 0;
  word-spacing: .035em;
  text-transform: none;
}

.scroll-residence-copy h3 {
  margin: 0 0 13px !important;
  color: var(--ink);
  font-size: clamp(27px, 2.45vw, 42px) !important;
  line-height: 1.05 !important;
  font-weight: 400;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.is-rtl .scroll-residence-copy h3 {
  font-size: clamp(36px, 3.25vw, 58px) !important;
  line-height: 1.14 !important;
  font-weight: 400;
  letter-spacing: -.03em;
}

.scroll-residence-copy p {
  width: min(100%, 500px);
  margin: 0 auto 18px !important;
  color: rgba(244, 239, 231, .84);
  font-weight: 400;
  font-size: clamp(14px, .96vw, 17px);
  line-height: 1.92 !important;
}

.is-rtl .scroll-residence-copy p {
  font-weight: 400;
  font-size: clamp(17px, 1.18vw, 21px);
  line-height: 2.12 !important;
}

.scroll-residence-features {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
}

.scroll-residence-features li {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 239, 231, .2);
  border-radius: 999px;
  padding: 4px 12px 5px;
  color: rgba(244, 239, 231, .88);
  font-weight: 500;
  font-size: clamp(11px, .72vw, 13px);
  line-height: 1.15;
  white-space: nowrap;
  letter-spacing: 0;
  word-spacing: .02em;
}

.is-rtl .scroll-residence-features li {
  font-weight: 500;
  letter-spacing: 0;
  word-spacing: .03em;
  padding-inline: 12px;
}

.scroll-residence-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(206, 176, 118, .58);
  border-radius: 999px;
  padding: 0 24px;
  color: var(--ink);
  font-weight: 500;
  font-size: clamp(13px, .86vw, 15px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}

.scroll-residence-copy a:hover {
  background: rgba(206, 176, 118, .16);
  border-color: rgba(206, 176, 118, .74);
}

.residence-progress-line {
  --residence-progress: 0;
  display: block;
  width: min(100%, 238px);
  height: 2px;
  margin: 18px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244, 239, 231, .15);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}

.scroll-residence-card[data-slot="center"] .residence-progress-line {
  opacity: 1;
  transform: translateY(0);
}

.residence-progress-line > span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: rgba(206, 176, 118, .92);
  transform: scaleX(var(--residence-progress));
  transform-origin: left center;
  transition: transform .08s linear;
}

.is-rtl .residence-progress-line > span {
  transform-origin: right center;
}

.is-rtl .scroll-residence-copy a {
  font-weight: 500;
  font-size: var(--ar-meta-size);
  line-height: var(--ar-meta-line);
  letter-spacing: 0;
  text-transform: none;
}

/* residence-desktop-copy-density */
@media (min-width: 901px) {
  .scroll-residence-copy {
    margin-top: 18px !important;
    padding-top: 12px !important;
  }

  .scroll-residence-copy small {
    line-height: 1.34;
    margin-bottom: 8px !important;
  }

  .scroll-residence-copy h3 {
    margin-bottom: 7px !important;
    line-height: 1 !important;
  }

  .is-rtl .scroll-residence-copy h3 {
    line-height: 1.04 !important;
  }

  .scroll-residence-copy p {
    margin-bottom: 10px !important;
    line-height: 1.52 !important;
  }

  .is-rtl .scroll-residence-copy p {
    line-height: 1.6 !important;
  }

  .scroll-residence-features {
    margin-bottom: 12px;
  }
}

.scroll-residence-card:not([data-slot="center"]) .scroll-residence-copy {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

@media (min-width: 981px) and (max-width: 1240px) {
  .residences-head {
    grid-template-columns: minmax(0, .36fr) minmax(0, .64fr);
    column-gap: clamp(28px, 4vw, 58px);
  }

  .residence-pin {
    min-height: 104svh;
  }

  .residence-track {
    height: min(92vh, 800px) !important;
    min-height: 760px;
  }

  .scroll-residence-card {
    width: clamp(315px, 34vw, 440px) !important;
    min-width: clamp(315px, 34vw, 440px) !important;
  }

  .scroll-residence-card[data-slot="left"] {
    transform: translate(calc(-50% - clamp(225px, 27vw, 350px)), -50%) scale(.68);
  }

  .scroll-residence-card[data-slot="right"] {
    transform: translate(calc(-50% + clamp(225px, 27vw, 350px)), -50%) scale(.68);
  }
}

@media (min-width: 681px) and (max-width: 900px) {
  .residence-pin {
    min-height: 104svh;
  }

  .residence-track {
    width: var(--container) !important;
    height: 760px !important;
    min-height: 760px;
  }

  .scroll-residence-card {
    width: min(70vw, 390px) !important;
    min-width: min(70vw, 390px) !important;
  }

  .scroll-residence-card[data-slot="left"] {
    transform: translate(calc(-50% - 220px), -50%) scale(.6);
  }

  .scroll-residence-card[data-slot="right"] {
    transform: translate(calc(-50% + 220px), -50%) scale(.6);
  }
}

@media (max-width: 760px) {
  .residence-scroll-section {
    padding-top: 72px;
    padding-bottom: 84px;
    overflow: visible;
    overflow-x: clip;
    overflow-y: visible;
  }

  .residences-head {
    display: block;
    width: var(--container);
    margin-bottom: 36px;
  }

  .residences-head .elyse-label {
    margin-bottom: 22px;
  }

  .residences-head .section-title {
    font-size: clamp(38px, 11.5vw, 60px);
    line-height: 1.02;
    letter-spacing: -.04em;
  }

  .is-rtl .residences-head .section-title {
    font-size: clamp(46px, 14vw, 72px);
    line-height: 1.02;
    letter-spacing: -.04em;
  }

  .residence-section-note {
    max-width: none;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.82;
  }

  .is-rtl .residence-section-note {
    font-size: var(--ar-label-size-mobile);
    line-height: var(--ar-label-line);
  }

  .residence-pin {
    max-width: 100%;
    min-height: 0;
    display: block;
    overflow: visible !important;
    overflow-x: clip !important;
    overflow-y: visible !important;
    clip-path: none;
  }

  .residence-track {
    position: relative !important;
    width: var(--container) !important;
    height: auto !important;
    min-height: 0;
    display: grid !important;
    gap: 40px;
    overflow: visible !important;
    padding: 0 !important;
    margin-inline: auto !important;
  }

  .scroll-residence-card,
  .scroll-residence-card[data-slot],
  .scroll-residence-card.is-active {
    position: relative !important;
    top: auto;
    left: auto;
    width: 100% !important;
    min-width: 0 !important;
    opacity: 1;
    filter: none;
    pointer-events: auto;
    transform: none !important;
  }

  .scroll-residence-image,
  .scroll-residence-card.is-active .scroll-residence-image {
    aspect-ratio: 4 / 3;
    height: auto !important;
    border-radius: 22px;
  }

  .scroll-residence-image img {
    inset: -8% 0 auto 0;
    height: 116%;
    object-position: center 76%;
  }

  .scroll-residence-card:not([data-slot="center"]) .scroll-residence-copy {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .scroll-residence-copy {
    width: 100%;
    margin-top: 18px !important;
    padding-top: 16px !important;
  }

  .scroll-residence-copy h3 {
    font-size: clamp(28px, 8.4vw, 42px) !important;
  }

  .is-rtl .scroll-residence-copy h3 {
    font-size: clamp(34px, 10vw, 52px) !important;
  }

  .scroll-residence-features {
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 16px;
  }

  .scroll-residence-features li {
    min-height: 26px;
    padding: 4px 10px 5px;
    font-size: 11px;
  }

  .is-rtl .scroll-residence-features li {
    padding-inline: 10px;
  }

  .scroll-residence-copy a {
    min-height: 40px;
  }

  .residence-progress-line {
    display: block;
    width: min(100%, 220px);
    height: 2px;
    margin: 16px auto 0;
    opacity: 1;
    transform: none;
  }

  .residence-pin.is-mobile-residence-story {
    min-height: 360svh;
  }

  .residence-pin.is-mobile-residence-story .residence-track {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: clamp(70px, 10svh, 94px);
    height: calc(100vh - 92px) !important;
    height: calc(100svh - clamp(84px, 12svh, 110px)) !important;
    max-height: 760px;
    display: block !important;
    gap: 0;
  }

  .residence-pin.is-mobile-residence-story .scroll-residence-card,
  .residence-pin.is-mobile-residence-story .scroll-residence-card[data-slot],
  .residence-pin.is-mobile-residence-story .scroll-residence-card.is-active {
    position: absolute !important;
    inset: 0;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    filter: brightness(.9) saturate(.97);
    transform: translate3d(0, 24px, 0) scale(.978) !important;
    transition:
      opacity .44s var(--ease),
      transform .56s var(--ease),
      filter .56s var(--ease);
    will-change: opacity, transform;
  }

  .residence-pin.is-mobile-residence-story .scroll-residence-card.is-active {
    opacity: 1;
    pointer-events: auto;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1) !important;
    z-index: 3;
  }

  .residence-pin.is-mobile-residence-story .scroll-residence-card.is-before {
    transform: translate3d(0, -20px, 0) scale(.985) !important;
    z-index: 1;
  }

  .residence-pin.is-mobile-residence-story .scroll-residence-card.is-after {
    transform: translate3d(0, 24px, 0) scale(.978) !important;
    z-index: 1;
  }

  .residence-pin.is-mobile-residence-story .scroll-residence-card:not(.is-active) .scroll-residence-copy {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
  }
}




@media (min-width: 681px) and (max-width: 900px) {
  .about-frame-layout {
    grid-template-columns: minmax(190px, .7fr) minmax(270px, 1fr) minmax(170px, .58fr);
    gap: 22px;
  }

  .about-frame-title .section-title {
    font-size: clamp(42px, 8.2vw, 70px);
  }

  .about-frame-image {
    height: 560px;
  }

  .about-frame-copy p {
    font-size: 14px;
    line-height: 1.55;
  }


}

@media (max-width: 680px) {
  .about-frame-layout {
    grid-template-columns: 1fr !important;
  }

  .about-frame-title .section-title {
    font-size: clamp(42px, 13vw, 76px);
  }

  .about-frame-image {
    height: 460px;
  }


}

/* Phase HERO CLEAN 01 */

/* Restored from the old grouped overflow rule without applying it to hero text. */
.section-title {
  overflow: hidden;
}

.hero-corner {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.hero-corner .hero-content,
.is-rtl .hero-corner .hero-content {
  width: min(92vw, 1080px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(96px, 12vh, 140px) 0 clamp(108px, 13vh, 154px);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  transform: translateY(clamp(92px, 10vh, 138px));
}

.hero-corner .hero-logo,
.is-rtl .hero-corner .hero-logo,
.hero-corner .hero-title,
.is-rtl .hero-corner .hero-title {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  overflow: visible;
}

.hero-corner .hero-logo {
  margin: 0 0 clamp(12px, 1.6vw, 22px);
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(39px, 5.2vw, 80px);
  font-weight: 300;
  line-height: .94;
  letter-spacing: -.032em;
  white-space: nowrap;
}

.is-rtl .hero-corner .hero-logo {
  margin: 0 0 clamp(10px, 1.5vw, 20px);
  font-family: var(--font-ar);
  font-size: clamp(62px, 8.8vw, 136px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-corner .hero-logo .split-unit,
.is-rtl .hero-corner .hero-logo .split-unit,
.hero-corner .hero-title .split-unit,
.is-rtl .hero-corner .hero-title .split-unit {
  display: inline-block;
}

.hero-corner .hero-title {
  margin: 0 0 clamp(18px, 2.2vw, 30px);
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(22px, 2.15vw, 34px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.018em;
  text-transform: lowercase;
}

.is-rtl .hero-corner .hero-title {
  margin: 0 0 clamp(18px, 2.2vw, 30px);
  font-family: var(--font-ar);
  font-size: clamp(32px, 3.9vw, 58px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: none;
}

.hero-corner .hero-text,
.is-rtl .hero-corner .hero-text {
  display: block;
  margin: 0 auto;
  color: var(--ink);
  opacity: .9;
  text-align: center;
}

.hero-corner .hero-text {
  max-width: 630px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.75;
}

.is-rtl .hero-corner .hero-text {
  max-width: 780px;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.95;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 50%;
  right: auto;
  display: grid;
  gap: 12px;
  justify-items: center;
  transform: translateX(-50%);
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

.scroll-cue i {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, var(--copper-2), transparent);
  transform-origin: top;
}

/* Phase PUBLIC HERO VIDEO CONTROL 01 */
.hero-video-toggle[hidden] {
  display: none;
}

.hero-video-toggle {
  position: absolute;
  z-index: 3;
  inset-inline-end: clamp(18px, 2.8vw, 36px);
  bottom: 32px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(244, 239, 231, .48);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(21, 18, 15, .36);
  color: #f4efe7;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.hero-video-toggle:hover {
  background: rgba(21, 18, 15, .52);
}

.hero-video-toggle-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: block;
}

.hero-video-toggle[aria-pressed="false"] .hero-video-toggle-icon::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.hero-video-toggle[aria-pressed="true"] .hero-video-toggle-icon::before,
.hero-video-toggle[aria-pressed="true"] .hero-video-toggle-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 3px;
  height: 10px;
  border-radius: 2px;
  background: currentColor;
}

.hero-video-toggle[aria-pressed="true"] .hero-video-toggle-icon::before {
  left: 2px;
}

.hero-video-toggle[aria-pressed="true"] .hero-video-toggle-icon::after {
  right: 2px;
}

@media (max-width: 680px) {
  .hero-video-toggle {
    inset-inline-end: 18px;
    bottom: 22px;
  }
}
/* End Phase PUBLIC HERO VIDEO CONTROL 01 */

@media (min-width: 681px) and (max-width: 980px) {
  .hero-corner .hero-content,
  .is-rtl .hero-corner .hero-content {
    width: min(92vw, 860px);
    padding-top: clamp(94px, 12vh, 128px);
    padding-bottom: clamp(104px, 13vh, 148px);
    transform: translateY(clamp(60px, 6.6vh, 88px));
  }

  .hero-corner .hero-logo {
    font-size: clamp(38px, 5.15vw, 64px);
  }

  .hero-corner .hero-title {
    font-size: clamp(21px, 2.6vw, 30px);
  }

  .hero-corner .hero-text {
    max-width: 580px;
    font-size: 15px;
  }

  .is-rtl .hero-corner .hero-logo {
    font-size: clamp(56px, 8vw, 96px);
  }

  .is-rtl .hero-corner .hero-title {
    font-size: clamp(30px, 3.8vw, 44px);
  }

  .is-rtl .hero-corner .hero-text {
    max-width: 680px;
    font-size: 18px;
  }
}

@media (max-width: 680px) {
  .hero-media video {
    object-position: 48.5% center;
  }

  .hero-corner .hero-content,
  .is-rtl .hero-corner .hero-content {
    width: min(92vw, 560px);
    padding-top: 104px;
    padding-bottom: 104px;
    transform: translateY(48px);
  }

  .hero-corner .hero-logo,
  .is-rtl .hero-corner .hero-logo {
    white-space: normal;
  }

  .hero-corner .hero-logo {
    font-size: clamp(40px, 11vw, 66px);
    line-height: 1;
  }

  .is-rtl .hero-corner .hero-logo {
    font-size: clamp(52px, 14vw, 82px);
    line-height: 1.08;
  }

  .hero-corner .hero-title {
    font-size: clamp(21px, 5.8vw, 30px);
    line-height: 1.14;
  }

  .is-rtl .hero-corner .hero-title {
    font-size: clamp(26px, 7vw, 38px);
    line-height: 1.28;
  }

  .hero-corner .hero-text {
    max-width: 95%;
    font-size: 15px;
    line-height: 1.72;
  }

  .is-rtl .hero-corner .hero-text {
    max-width: 95%;
    font-size: 17px;
    line-height: 1.9;
  }

  .scroll-cue {
    bottom: 22px;
    font-size: 14px;
    letter-spacing: .06em;
  }

  .is-rtl .scroll-cue {
    font-size: 15px;
  }

  .scroll-cue i {
    height: 54px;
  }
}



/* Phase FEATURED_PROPERTIES_VIEW_ALL_CTA_01 */
.residences-view-all {
  width: var(--container);
  margin: clamp(26px, 4vw, 58px) auto 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 12;
}

.residences-view-all-button {
  text-decoration: none;
}

@media (max-width: 980px) {
  .residences-view-all {
    margin-top: clamp(18px, 6vw, 34px);
  }

  .residences-view-all-button {
    width: 100%;
  }
}
/* End Phase FEATURED_PROPERTIES_VIEW_ALL_CTA_01 */

/* Phase EN FRAGMENT TITLES 01 */
.is-ltr .hero-corner .hero-logo,
.is-ltr .section-title,
.is-ltr .standard-copy .section-title,
.is-ltr .residences-head .section-title,
.is-ltr .owner-cta-copy h2,
.is-ltr .closing-copy h3,
.is-ltr .scroll-residence-copy h3 {
  font-family: "PP Fragment Serif", Georgia, serif;
  font-style: normal;
  font-weight: 400;
}

.is-ltr .hero-corner .hero-title,
.is-ltr .belief-grid h3,
.is-ltr .service-story-copy h2 {
  font-family: "PP Fragment Glare", "PP Fragment Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* Phase EN_SECTION_HEADING_SIZE_UNIFY_01 */
.aldiyar-public.is-ltr .about-frame-title .section-title,
.aldiyar-public.is-ltr .residences-head .section-title,
.aldiyar-public.is-ltr .standard-copy .section-title,
.aldiyar-public.is-ltr .service-story-head .section-title,
.aldiyar-public.is-ltr .elyse-faq .section-title,
.aldiyar-public.is-ltr .closing-hero .section-title,
.aldiyar-public.is-ltr .closing-copy h3 {
  font-size: clamp(40px, 4.55vw, 82px);
  line-height: .99;
  letter-spacing: -.046em;
}
.aldiyar-public.is-ltr .about-frame-title .section-title {
  line-height: 1.16;
}

/* Phase OWNER_SERVICE_SIGNAGE_LARGE_FULL_WIDTH_01 */
.service-story-item[data-story-index="2"] .story-large img,
.service-story-item[data-story-index="2"] .story-small img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* End Phase OWNER_SERVICE_SIGNAGE_LARGE_FULL_WIDTH_01 */

/* Phase ALDIYAR_EXPERTISE_STATIC_01 */
.aldiyar-expertise-section {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: var(--ink);
}

.expertise-shell {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

/* Phase ALDIYAR_EXPERTISE_INTERACTION_01 */
.expertise-heading,
.expertise-media,
.expertise-item,
.expertise-cta {
  will-change: transform, opacity;
}
/* End Phase ALDIYAR_EXPERTISE_INTERACTION_01 */

.expertise-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.12fr)
    minmax(280px, .68fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  padding-top: clamp(32px, 4.5vw, 62px);
}

.is-rtl .expertise-heading {
  grid-template-columns:
    minmax(280px, .68fr)
    minmax(0, 1.12fr);
}

.expertise-heading .elyse-label {
  grid-column: 1 / -1;
  color: var(--copper-2);
}

.expertise-heading .section-title {
  grid-column: 1;
  max-width: 10ch;
  color: var(--ink);
  font-size: clamp(48px, 6.25vw, 104px);
}

.is-rtl .expertise-heading .section-title {
  grid-column: 2;
}

.expertise-heading-copy {
  grid-column: 2;
  align-self: end;
  padding-bottom: clamp(4px, .8vw, 12px);
}

.is-rtl .expertise-heading-copy {
  grid-column: 1;
}

.expertise-intro,
.expertise-body {
  max-width: 40rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.9;
}

.expertise-body {
  margin-top: clamp(16px, 2vw, 28px);
  padding-top: clamp(16px, 2vw, 28px);
  border-top: 1px solid var(--line);
  font-size: clamp(15px, 1.05vw, 18px);
}

.aldiyar-public.is-rtl .expertise-intro,
.aldiyar-public.is-rtl .expertise-body,
.aldiyar-public.is-rtl .expertise-item p {
  font-size: var(--ar-body-size);
  line-height: var(--ar-body-line);
  text-align: justify;
  text-justify: inter-word;
}

.aldiyar-public.is-ltr .expertise-intro,
.aldiyar-public.is-ltr .expertise-body,
.aldiyar-public.is-ltr .expertise-item p {
  text-align: start;
  hyphens: none;
}

.expertise-editorial {
  display: grid;
  grid-template-columns:
    minmax(0, 1.14fr)
    minmax(320px, .86fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: stretch;
  margin-top: clamp(64px, 9vw, 132px);
}

.is-rtl .expertise-editorial {
  grid-template-columns:
    minmax(0, 1.14fr)
    minmax(320px, .86fr);
}

.expertise-media {
  grid-column: 2;
  min-height: clamp(560px, 58vw, 820px);
  background: var(--deep-2);
  color: var(--ink);
}

.is-rtl .expertise-media {
  grid-column: 2;
}

.expertise-media-frame {
  position: relative;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 231, .14);
  background: var(--deep-2);
}

/* Phase ALDIYAR_EXPERTISE_IMAGES_01 */
.expertise-media-stack {
  position: absolute;
  inset: 0;
}

.expertise-media-image {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
}

.expertise-media-image.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.expertise-media-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(23, 20, 16, .04) 38%,
      rgba(23, 20, 16, .84) 100%
    );
  pointer-events: none;
}

.expertise-media-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-media-image figcaption {
  position: absolute;
  z-index: 2;
  inset-inline: clamp(24px, 3.2vw, 48px);
  inset-block-end: clamp(25px, 3.6vw, 52px);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
}

.expertise-media-image figcaption span {
  color: var(--copper-2);
  font-family: var(--font-en);
  font-size: clamp(17px, 1.3vw, 22px);
}

.expertise-media-image figcaption strong {
  max-width: 72%;
  font-size: clamp(23px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  text-align: end;
}

.is-rtl .expertise-media-image figcaption {
  flex-direction: row-reverse;
}

.is-rtl .expertise-media-image figcaption strong {
  text-align: start;
}

/* End Phase ALDIYAR_EXPERTISE_IMAGES_01 */

.expertise-list {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  border-top: 1px solid var(--line);
}

.is-rtl .expertise-list {
  grid-column: 1;
  grid-row: 1;
}

.expertise-item {
  display: grid;
  grid-template-columns:
    clamp(50px, 5vw, 76px)
    minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
  padding: clamp(30px, 4.2vw, 58px) 0;
  border-bottom: 1px solid var(--line);
}

.expertise-item-number {
  grid-column: 1;
  color: var(--copper-2);
  font-family: var(--font-en);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1;
}

.expertise-item-copy {
  grid-column: 2;
}

.is-rtl .expertise-item-number {
  grid-column: 2;
}

.is-rtl .expertise-item-copy {
  grid-column: 1;
  grid-row: 1;
}

.is-rtl .expertise-item {
  grid-template-columns:
    minmax(0, 1fr)
    clamp(50px, 5vw, 76px);
}

.expertise-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(29px, 3.1vw, 52px);
  font-weight: 400;
  line-height: 1.08;
}

.expertise-item p {
  max-width: 42rem;
  margin: clamp(12px, 1.5vw, 20px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.85;
}

.expertise-item.is-active .expertise-item-number {
  color: var(--copper-2);
}

/* Phase ALDIYAR_EDITORIAL_CTA_SYSTEM_01 */
.aldiyar-editorial-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(244, 239, 231, .42);
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.4;
  transition:
    gap .5s var(--ease),
    color .5s var(--ease),
    border-color .5s var(--ease);
}

.aldiyar-editorial-cta > :last-child {
  color: var(--copper-2);
  font-family: var(--font-en);
  font-size: 1.25em;
  font-style: normal;
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .aldiyar-editorial-cta:hover,
  .aldiyar-home-service-card-link:hover
  .aldiyar-home-service-action {
    gap: 24px;
    color: var(--copper-2);
    border-color: var(--copper-2);
  }
}

.aldiyar-editorial-cta:focus-visible,
.aldiyar-home-service-card-link:focus-visible
.aldiyar-home-service-action {
  gap: 24px;
  color: var(--copper-2);
  border-color: var(--copper-2);
}

@media (max-width: 720px) {
  .aldiyar-editorial-cta {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aldiyar-editorial-cta {
    transition: none;
  }
}
/* End Phase ALDIYAR_EDITORIAL_CTA_SYSTEM_01 */

.expertise-cta {
  margin-top: clamp(46px, 7vw, 92px);
}

@media (max-width: 980px) {
  .expertise-heading,
  .is-rtl .expertise-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .expertise-heading .elyse-label,
  .expertise-heading .section-title,
  .is-rtl .expertise-heading .section-title,
  .expertise-heading-copy,
  .is-rtl .expertise-heading-copy {
    grid-column: 1;
  }

  .expertise-heading .section-title {
    max-width: 12ch;
  }

  /* Phase ALDIYAR_EXPERTISE_MOBILE_STICKY_01 */
  .aldiyar-expertise-section {
    overflow: visible;
  }

  .expertise-editorial,
  .is-rtl .expertise-editorial {
    display: block;
  }

  .expertise-media,
  .is-rtl .expertise-media {
    display: block;
    position: sticky;
    top: calc(
      72px
      + env(safe-area-inset-top)
    );
    z-index: 4;
    width: 100%;
    height: clamp(250px, 40vh, 380px);
    height: clamp(250px, 40svh, 380px);
    min-height: 0;
    margin: 0 0 clamp(42px, 8vw, 68px);
    align-self: start;

    /* Phase ALDIYAR_EXPERTISE_MOBILE_STICKY_STABILITY_01 */
    transform: none !important;
    transform-origin: center center !important;
    will-change: auto;
    /* End Phase ALDIYAR_EXPERTISE_MOBILE_STICKY_STABILITY_01 */
  }

  .expertise-media-frame {
    height: 100%;
    min-height: 0;
  }

  .expertise-list,
  .is-rtl .expertise-list {
    position: relative;
    z-index: 1;
    grid-column: auto;
    grid-row: auto;
  }
  /* End Phase ALDIYAR_EXPERTISE_MOBILE_STICKY_01 */

}

@media (max-width: 680px) {
  .expertise-heading {
    padding-top: 24px;
  }

  .expertise-heading .section-title {
    font-size: clamp(43px, 13.5vw, 68px);
    line-height: .98;
  }

  .aldiyar-public.is-rtl .expertise-intro,
  .aldiyar-public.is-rtl .expertise-body,
  .aldiyar-public.is-rtl .expertise-item p {
    font-size: var(--ar-body-size-mobile);
    line-height: 1.95;
  }

  .expertise-editorial {
    margin-top: 52px;
  }

  .expertise-item,
  .is-rtl .expertise-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    padding: 30px 0;
  }

  .expertise-item-number,
  .is-rtl .expertise-item-number {
    grid-column: 1;
  }

  .expertise-item-copy,
  .is-rtl .expertise-item-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .is-rtl .expertise-item {
    direction: rtl;
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .is-rtl .expertise-item-number {
    grid-column: 2;
  }

  .is-rtl .expertise-item-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .expertise-item h3 {
    font-size: clamp(29px, 9.5vw, 43px);
  }

  .expertise-cta {
    margin-top: 42px;
  }
}
/* End Phase ALDIYAR_EXPERTISE_STATIC_01 */

/* Phase MADINAH_CURATED_STATIC_01 */
.madinah-curated-section {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: var(--ink);
}

.madinah-curated-shell {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.madinah-curated-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(320px, .62fr);
  gap: clamp(42px, 8vw, 132px);
  align-items: end;
  padding-bottom: clamp(48px, 6.5vw, 92px);
}

.madinah-curated-title-block {
  min-width: 0;
}

.madinah-curated-title-block .elyse-label {
  margin: 0 0 clamp(24px, 3.2vw, 46px);
  color: var(--copper-2);
}

.madinah-curated-title-block .section-title {
  max-width: 940px;
  color: var(--ink);
  font-size: clamp(52px, 6vw, 108px);
  line-height: .96;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.is-rtl .madinah-curated-title-block .section-title {
  font-size: clamp(64px, 6.7vw, 122px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.madinah-curated-intro {
  width: min(100%, 560px);
  justify-self: end;
}

.madinah-curated-lead,
.madinah-curated-body {
  margin: 0;
}

.madinah-curated-lead {
  color: var(--ink);
  font-size: clamp(18px, 1.42vw, 24px);
  line-height: 1.85;
}

.madinah-curated-body {
  margin-top: clamp(18px, 2vw, 28px);
  color: var(--ink-soft);
  font-size: clamp(14px, .98vw, 17px);
  line-height: 1.9;
}

.is-rtl .madinah-curated-lead {
  font-size: var(--ar-body-size);
  line-height: var(--ar-body-line);
  text-align: justify;
  text-justify: inter-word;
}

.is-rtl .madinah-curated-body {
  font-size: var(--ar-meta-size);
  line-height: var(--ar-meta-line);
  text-align: justify;
  text-justify: inter-word;
}

.is-ltr .madinah-curated-lead,
.is-ltr .madinah-curated-body,
.is-ltr .madinah-curated-item p {
  text-align: start;
  hyphens: none;
}

.madinah-curated-cta {
  margin-top: clamp(28px, 3.4vw, 48px);
}

.madinah-curated-index {
  margin-top: clamp(52px, 7vw, 108px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 0 clamp(48px, 8vw, 132px);
}

.madinah-curated-item:nth-child(1),
.madinah-curated-item:nth-child(5) {
  border-top: 1px solid var(--line);
}

.madinah-curated-item {
  position: relative;
  min-height: clamp(178px, 17vw, 252px);
  padding: clamp(28px, 3.4vw, 48px) 0;
  display: grid;
  grid-template-columns:
    clamp(48px, 4.6vw, 72px)
    minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 36px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.madinah-curated-item::after {
  position: absolute;
  content: "";
  inset: auto 0 -1px;
  height: 1px;
  background: var(--copper-2);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .65s var(--ease);
}

.is-rtl .madinah-curated-item::after {
  transform-origin: right center;
}

.madinah-curated-number {
  padding-top: .38em;
  color: rgba(214, 161, 126, .74);
  font-family: var(--font-en);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1;
  letter-spacing: .12em;
  transition:
    color .5s var(--ease),
    transform .5s var(--ease);
}

.madinah-curated-copy {
  min-width: 0;
  transition: transform .55s var(--ease);
}

.madinah-curated-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(29px, 2.8vw, 48px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.is-rtl .madinah-curated-item h3 {
  font-size: clamp(34px, 3.15vw, 56px);
  line-height: 1.16;
  letter-spacing: -.018em;
}

.madinah-curated-item p {
  max-width: 540px;
  margin: clamp(17px, 1.8vw, 26px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(14px, .96vw, 17px);
  line-height: 1.85;
}

.is-rtl .madinah-curated-item p {
  font-size: clamp(17px, 1.18vw, 21px);
  line-height: 1.85;
}

.madinah-curated-item:hover::after {
  transform: scaleX(1);
}

.madinah-curated-item:hover .madinah-curated-copy {
  transform: translateX(7px);
}

.is-rtl
.madinah-curated-item:hover
.madinah-curated-copy {
  transform: translateX(-7px);
}

.madinah-curated-item:hover .madinah-curated-number {
  color: var(--copper-2);
  transform: translateY(-3px);
}

.is-ltr
.madinah-curated-title-block
.section-title,
.is-ltr
.madinah-curated-item
h3 {
  font-family: "PP Fragment Serif", Georgia, serif;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 980px) {
  .madinah-curated-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .madinah-curated-intro {
    width: min(100%, 720px);
    justify-self: start;
  }

  .madinah-curated-index {
    gap: 0 46px;
  }

  .madinah-curated-item {
    grid-template-columns: 48px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .madinah-curated-section {
    padding-top: 78px;
    padding-bottom: 86px;
  }

  .madinah-curated-heading {
    gap: 26px;
    padding-bottom: 40px;
  }

  .madinah-curated-title-block .elyse-label {
    margin-bottom: 20px;
  }

  .madinah-curated-title-block .section-title,
  .is-rtl
  .madinah-curated-title-block
  .section-title {
    font-size: clamp(42px, 12.2vw, 66px);
    line-height: 1.05;
    letter-spacing: -.038em;
  }

  .is-rtl
  .madinah-curated-title-block
  .section-title {
    font-size: clamp(48px, 13.7vw, 72px);
    line-height: 1.1;
  }

  .madinah-curated-lead {
    font-size: 16px;
    line-height: 1.82;
  }

  .is-rtl .madinah-curated-lead {
    font-size: var(--ar-body-size-mobile);
    line-height: 1.9;
  }

  .madinah-curated-body {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.82;
  }

  .is-rtl .madinah-curated-body {
    font-size: var(--ar-meta-size-mobile);
    line-height: 1.82;
  }

  .madinah-curated-cta {
    margin-top: 26px;
  }

  .madinah-curated-index {
    margin-top: 50px;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 0;
  }

  .madinah-curated-item:nth-child(5) {
    border-top: 0;
  }

  .madinah-curated-item {
    min-height: 0;
    padding: 28px 0 30px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .madinah-curated-number {
    padding-top: .48em;
    font-size: 13px;
  }

  .madinah-curated-item h3,
  .is-rtl .madinah-curated-item h3 {
    font-size: clamp(29px, 8.8vw, 44px);
    line-height: 1.12;
  }

  .is-rtl .madinah-curated-item h3 {
    font-size: clamp(33px, 9.8vw, 48px);
    line-height: 1.18;
  }

  .madinah-curated-item p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.82;
  }

  .is-rtl .madinah-curated-item p {
    font-size: var(--ar-meta-size-mobile);
    line-height: 1.82;
  }

  .madinah-curated-item:hover .madinah-curated-copy,
  .is-rtl
  .madinah-curated-item:hover
  .madinah-curated-copy {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .madinah-curated-item::after,
  .madinah-curated-number,
  .madinah-curated-copy {
    transition: none;
  }
}
/* End Phase MADINAH_CURATED_STATIC_01 */

/* Phase ALDIYAR_JOURNAL_STATIC_01 */
.aldiyar-journal-section {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: var(--ink);
}

.aldiyar-journal-shell {
  width: var(--container);
  margin: 0 auto;
}

.aldiyar-journal-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(320px, .62fr);
  gap: clamp(42px, 8vw, 132px);
  align-items: end;
  padding-bottom: clamp(48px, 6.5vw, 92px);
}

.aldiyar-journal-title-block {
  min-width: 0;
}

.aldiyar-journal-title-block .elyse-label {
  margin: 0 0 clamp(24px, 3.2vw, 46px);
  color: var(--copper-2);
}

.aldiyar-journal-title-block .section-title {
  max-width: 10ch;
  overflow: visible;
  color: var(--ink);
  font-size: clamp(52px, 6vw, 108px);
  line-height: .96;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.is-rtl
.aldiyar-journal-title-block
.section-title {
  max-width: 11ch;
  font-size: clamp(64px, 6.7vw, 122px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.aldiyar-journal-intro {
  width: min(100%, 560px);
  justify-self: end;
}

.is-rtl .aldiyar-journal-intro {
  justify-self: start;
}

.aldiyar-journal-lead,
.aldiyar-journal-body {
  margin: 0;
}

.aldiyar-journal-lead {
  color: var(--ink);
  font-size: clamp(18px, 1.42vw, 24px);
  line-height: 1.85;
}

.aldiyar-journal-body {
  margin-top: clamp(18px, 2vw, 28px);
  color: var(--ink-soft);
  font-size: clamp(14px, .98vw, 17px);
  line-height: 1.9;
}

.is-rtl .aldiyar-journal-lead {
  font-size: var(--ar-body-size);
  line-height: var(--ar-body-line);
  text-align: justify;
  text-justify: inter-word;
}

.is-rtl .aldiyar-journal-body {
  font-size: var(--ar-meta-size);
  line-height: var(--ar-meta-line);
  text-align: justify;
  text-justify: inter-word;
}

.is-ltr .aldiyar-journal-lead,
.is-ltr .aldiyar-journal-body,
.is-ltr .aldiyar-journal-headline,
.is-ltr .aldiyar-journal-excerpt {
  text-align: start;
  hyphens: none;
}

.aldiyar-journal-cta {
  margin-top: clamp(28px, 3.4vw, 48px);
}

.aldiyar-journal-grid {
  margin-top: clamp(52px, 7vw, 108px);
  display: grid;
  grid-template-columns:
    minmax(0, 1.12fr)
    minmax(320px, .88fr);
  grid-template-rows: repeat(2, auto);
  column-gap: clamp(48px, 8vw, 132px);
}

.aldiyar-journal-item {
  position: relative;
  min-width: 0;
  padding: clamp(34px, 4vw, 58px) 0;
}

/* Phase ALDIYAR_FIRST_ARTICLE_HOME_LINK_01 */
.aldiyar-journal-item.has-article-link {
  cursor: pointer;
}

.aldiyar-journal-item-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.aldiyar-journal-item-link:focus-visible {
  outline: 1px solid var(--copper-2);
  outline-offset: 12px;
}
/* End Phase ALDIYAR_FIRST_ARTICLE_HOME_LINK_01 */

.aldiyar-journal-item.is-featured {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: clamp(520px, 48vw, 720px);
  padding-inline-end: clamp(26px, 3vw, 48px);
  display: flex;
  flex-direction: column;
}

.is-rtl
.aldiyar-journal-item.is-featured {
  grid-column: 2;
  padding-inline-start: clamp(26px, 3vw, 48px);
  padding-inline-end: 0;
}

.aldiyar-journal-item:not(.is-featured) {
  grid-column: 2;
  padding-inline-start: clamp(34px, 4.2vw, 68px);
}

.is-rtl
.aldiyar-journal-item:not(.is-featured) {
  grid-column: 1;
  padding-inline-start: 0;
  padding-inline-end: clamp(34px, 4.2vw, 68px);
}

.aldiyar-journal-item:nth-child(2) {
  grid-row: 1;
}

.aldiyar-journal-item:nth-child(3) {
  grid-row: 2;
  border-top: 1px solid var(--line);
}

.aldiyar-journal-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
}

.aldiyar-journal-number {
  color: rgba(214, 161, 126, .82);
  font-family: var(--font-en);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1;
  letter-spacing: .12em;
}

.aldiyar-journal-category {
  color: rgba(244, 239, 231, .56);
  font-size: clamp(12px, .82vw, 15px);
  line-height: 1.5;
  text-align: end;
}

.is-rtl .aldiyar-journal-category {
  font-size: var(--ar-meta-size);
  line-height: var(--ar-meta-line);
}

.aldiyar-journal-copy {
  min-width: 0;
  transition: transform .55s var(--ease);
}

.aldiyar-journal-item.is-featured
.aldiyar-journal-copy {
  margin-block: auto;
  padding-top: 0;
}

.aldiyar-journal-item:not(.is-featured)
.aldiyar-journal-copy {
  margin-top: clamp(42px, 5vw, 76px);
}

.aldiyar-journal-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(29px, 2.7vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.034em;
  text-wrap: balance;
}

.aldiyar-journal-item.is-featured h3 {
  max-width: 12ch;
  font-size: clamp(46px, 5.1vw, 88px);
  line-height: .98;
  letter-spacing: -.052em;
}

.is-rtl .aldiyar-journal-item h3 {
  font-size: clamp(35px, 3.15vw, 56px);
  line-height: 1.16;
  letter-spacing: -.018em;
}

.is-rtl
.aldiyar-journal-item.is-featured
h3 {
  max-width: 13ch;
  font-size: clamp(56px, 5.8vw, 102px);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.aldiyar-journal-headline {
  max-width: 42rem;
  margin: clamp(22px, 2.4vw, 34px) 0 0;
  color: var(--ink);
  font-size: clamp(17px, 1.24vw, 21px);
  line-height: 1.7;
}

.aldiyar-journal-excerpt {
  max-width: 42rem;
  margin: clamp(15px, 1.7vw, 24px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(14px, .96vw, 17px);
  line-height: 1.85;
}

.is-rtl .aldiyar-journal-headline {
  font-size: var(--ar-body-size);
  line-height: 1.8;
}

.is-rtl .aldiyar-journal-excerpt {
  font-size: var(--ar-meta-size);
  line-height: var(--ar-meta-line);
  text-align: justify;
  text-justify: inter-word;
}

.is-ltr
.aldiyar-journal-title-block
.section-title,
.is-ltr
.aldiyar-journal-item
h3 {
  font-family:
    "PP Fragment Serif",
    Georgia,
    serif;
  font-style: normal;
  font-weight: 400;
}

.aldiyar-journal-item.has-article-link:hover
.aldiyar-journal-copy,
.aldiyar-journal-item.has-article-link:focus-within
.aldiyar-journal-copy {
  transform: translateX(7px);
}

.is-rtl
.aldiyar-journal-item.has-article-link:hover
.aldiyar-journal-copy,
.is-rtl
.aldiyar-journal-item.has-article-link:focus-within
.aldiyar-journal-copy {
  transform: translateX(-7px);
}

@media (max-width: 980px) {
  .aldiyar-journal-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .aldiyar-journal-intro,
  .is-rtl .aldiyar-journal-intro {
    width: min(100%, 720px);
    justify-self: start;
  }

  .aldiyar-journal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    column-gap: 0;
  }

  .aldiyar-journal-item,
  .aldiyar-journal-item.is-featured,
  .is-rtl
  .aldiyar-journal-item.is-featured,
  .aldiyar-journal-item:not(.is-featured),
  .is-rtl
  .aldiyar-journal-item:not(.is-featured) {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    padding-inline: 0;
    border-inline-start: 0;
  }

  .aldiyar-journal-item.is-featured
  .aldiyar-journal-copy,
  .aldiyar-journal-item:not(.is-featured)
  .aldiyar-journal-copy {
    margin-block: clamp(42px, 7vw, 72px) 0;
    padding-top: 0;
  }

  .aldiyar-journal-item.is-featured h3,
  .is-rtl
  .aldiyar-journal-item.is-featured
  h3 {
    max-width: 15ch;
  }
}

@media (max-width: 680px) {
  .aldiyar-journal-section {
    padding-top: 78px;
    padding-bottom: 86px;
  }

  .aldiyar-journal-heading {
    gap: 26px;
    padding-bottom: 40px;
  }

  .aldiyar-journal-title-block
  .elyse-label {
    margin-bottom: 20px;
  }

  .aldiyar-journal-title-block
  .section-title,
  .is-rtl
  .aldiyar-journal-title-block
  .section-title {
    max-width: none;
    font-size: clamp(42px, 12.2vw, 66px);
    line-height: 1.05;
    letter-spacing: -.038em;
  }

  .is-rtl
  .aldiyar-journal-title-block
  .section-title {
    font-size: clamp(48px, 13.7vw, 72px);
    line-height: 1.1;
  }

  .aldiyar-journal-lead {
    font-size: 16px;
    line-height: 1.82;
  }

  .is-rtl .aldiyar-journal-lead {
    font-size: var(--ar-body-size-mobile);
    line-height: 1.9;
  }

  .aldiyar-journal-body {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.82;
  }

  .is-rtl .aldiyar-journal-body {
    font-size: var(--ar-meta-size-mobile);
    line-height: 1.82;
  }

  .aldiyar-journal-cta {
    margin-top: 26px;
  }

  .aldiyar-journal-grid {
    margin-top: 50px;
  }

  .aldiyar-journal-item,
  .aldiyar-journal-item.is-featured {
    padding: 30px 0 32px;
  }

  .aldiyar-journal-category {
    max-width: 70%;
    font-size: 12px;
  }

  .is-rtl .aldiyar-journal-category {
    font-size: var(--ar-meta-size-mobile);
  }

  .aldiyar-journal-item h3,
  .aldiyar-journal-item.is-featured h3 {
    max-width: none;
    font-size: clamp(31px, 9.4vw, 46px);
    line-height: 1.08;
  }

  .is-rtl .aldiyar-journal-item h3,
  .is-rtl
  .aldiyar-journal-item.is-featured
  h3 {
    max-width: none;
    font-size: clamp(35px, 10.5vw, 52px);
    line-height: 1.16;
  }

  .aldiyar-journal-item.is-featured
  .aldiyar-journal-copy,
  .aldiyar-journal-item:not(.is-featured)
  .aldiyar-journal-copy {
    margin-top: 34px;
  }

  .aldiyar-journal-headline {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.72;
  }

  .is-rtl .aldiyar-journal-headline {
    font-size: var(--ar-body-size-mobile);
    line-height: 1.82;
  }

  .aldiyar-journal-excerpt {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.82;
  }

  .is-rtl .aldiyar-journal-excerpt {
    font-size: var(--ar-meta-size-mobile);
    line-height: 1.82;
  }

  .aldiyar-journal-item.has-article-link:hover
  .aldiyar-journal-copy,
  .aldiyar-journal-item.has-article-link:focus-within
  .aldiyar-journal-copy,
  .is-rtl
  .aldiyar-journal-item.has-article-link:hover
  .aldiyar-journal-copy,
  .is-rtl
  .aldiyar-journal-item.has-article-link:focus-within
  .aldiyar-journal-copy {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aldiyar-journal-copy {
    transition: none;
  }
}
/* End Phase ALDIYAR_JOURNAL_STATIC_01 */
/* Phase ALDIYAR_UNIFIED_PUBLIC_FOOTER_01 */
.aldiyar-unified-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #eee6da;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(183, 119, 85, .14),
      transparent 30rem
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(198, 138, 91, .08),
      transparent 27rem
    ),
    #100e0b;
  border-top: 1px solid rgba(244, 239, 231, .12);
  isolation: isolate;
}

.aldiyar-unified-footer::before {
  position: absolute;
  inset-inline-start: -.02em;
  bottom: -.27em;
  z-index: -1;
  color: rgba(244, 239, 231, .025);
  font-family: var(--font-en);
  font-size: clamp(9rem, 24vw, 27rem);
  font-weight: 300;
  letter-spacing: -.08em;
  line-height: .72;
  white-space: nowrap;
  content: attr(data-footer-watermark);
  pointer-events: none;
}

.is-rtl .aldiyar-unified-footer::before {
  font-family: var(--font-ar);
  font-size: clamp(10rem, 25vw, 29rem);
  letter-spacing: -.04em;
}

.aldiyar-unified-footer__shell {
  position: relative;
  z-index: 1;
  width: min(
    1400px,
    calc(100% - clamp(40px, 9vw, 144px))
  );
  margin-inline: auto;
  padding:
    clamp(42px, 5vw, 72px)
    0
    clamp(28px, 4vw, 48px);
}

.aldiyar-unified-footer__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: clamp(30px, 4vw, 52px);
  border-bottom: 1px solid rgba(244, 239, 231, .13);
}

.aldiyar-unified-footer__topbar > p {
  margin: 0;
  color: rgba(244, 239, 231, .52);
  font-size: .72rem;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.is-rtl .aldiyar-unified-footer__topbar > p {
  font-size: clamp(1.03rem, 1.12vw, 1.16rem);
  letter-spacing: .01em;
  line-height: 1.65;
  text-transform: none;
}

.aldiyar-unified-footer__request {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 48px;
  padding: 11px 17px;
  color: #f4efe7;
  border: 1px solid rgba(198, 138, 91, .55);
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.aldiyar-unified-footer__request:hover,
.aldiyar-unified-footer__request:focus-visible {
  color: #17130f;
  background: #c68a5b;
  border-color: #c68a5b;
  transform: translateY(-2px);
}

.aldiyar-unified-footer__request span:first-child {
  font-size: .82rem;
  letter-spacing: .04em;
}

.is-rtl
.aldiyar-unified-footer__request
span:first-child {
  font-size: 1.1rem;
  letter-spacing: 0;
  line-height: 1.55;
}

.aldiyar-unified-footer__grid {
  display: grid;
  grid-template-columns:
    minmax(300px, 1.55fr)
    minmax(145px, .62fr)
    minmax(160px, .68fr)
    minmax(210px, .85fr);
  gap: clamp(38px, 6vw, 92px);
  padding:
    clamp(58px, 8vw, 108px)
    0
    clamp(54px, 7vw, 90px);
}

.aldiyar-unified-footer__brand {
  max-width: 520px;
}

.aldiyar-unified-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #f4efe7;
  text-decoration: none;
}

.aldiyar-unified-footer__brand-link img {
  display: block;
  width: clamp(22px, 2vw, 31px);
  height: auto;
}

.aldiyar-unified-footer__brand-link span {
  font-family: var(--font-en);
  font-size: clamp(1.65rem, 2.7vw, 3rem);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: 1;
}

.is-rtl
.aldiyar-unified-footer__brand-link
span {
  font-family: var(--font-ar);
  font-size: clamp(1.9rem, 3vw, 3.25rem);
  letter-spacing: 0;
  line-height: 1.15;
}

.aldiyar-unified-footer__statement {
  max-width: 500px;
  margin: clamp(28px, 4vw, 48px) 0 0;
  color: rgba(244, 239, 231, .76);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 300;
  line-height: 1.55;
}

.is-ltr .aldiyar-unified-footer__statement {
  font-style: italic;
}

.is-rtl .aldiyar-unified-footer__statement {
  font-size: clamp(1.3rem, 2.1vw, 2.1rem);
  line-height: 1.75;
}

.aldiyar-unified-footer__location {
  margin: 28px 0 0;
  color: rgba(244, 239, 231, .42);
  font-size: .8rem;
  line-height: 1.7;
}

.is-rtl .aldiyar-unified-footer__location {
  font-size: 1.08rem;
  line-height: 1.65;
}

.aldiyar-unified-footer__group {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.aldiyar-unified-footer__heading {
  margin: 0 0 14px;
  color: #c68a5b;
  font-size: .69rem;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.is-rtl .aldiyar-unified-footer__heading {
  font-size: 1.06rem;
  letter-spacing: .01em;
  line-height: 1.6;
  text-transform: none;
}

.aldiyar-unified-footer__group a {
  color: rgba(244, 239, 231, .68);
  font-size: .87rem;
  line-height: 1.6;
  text-decoration: none;
  transition:
    color 170ms ease,
    transform 170ms ease;
}

.is-rtl .aldiyar-unified-footer__group a {
  font-size: 1.09rem;
  line-height: 1.65;
}

.aldiyar-unified-footer__group a:hover,
.aldiyar-unified-footer__group a:focus-visible {
  color: #f4efe7;
  transform: translateX(3px);
}

.is-rtl
.aldiyar-unified-footer__group
a:hover,
.is-rtl
.aldiyar-unified-footer__group
a:focus-visible {
  transform: translateX(-3px);
}

.aldiyar-unified-footer__contact a[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
}

.aldiyar-unified-footer__bottom {
  padding-top: 27px;
  border-top: 1px solid rgba(244, 239, 231, .12);
}

.aldiyar-unified-footer__bottom p {
  margin: 0;
  color: rgba(244, 239, 231, .42);
  font-size: .72rem;
  line-height: 1.7;
}

.is-rtl .aldiyar-unified-footer__bottom p {
  font-size: 1.02rem;
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .aldiyar-unified-footer__grid {
    grid-template-columns:
      minmax(280px, 1.35fr)
      repeat(2, minmax(160px, .7fr));
  }

  .aldiyar-unified-footer__contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 760px) {
  .aldiyar-unified-footer__shell {
    width: calc(100% - 32px);
    padding: 24px 0 22px;
  }

  .aldiyar-unified-footer__topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 20px;
  }

  .aldiyar-unified-footer__request {
    width: 100%;
    min-height: 44px;
    padding: 9px 14px;
  }

  .aldiyar-unified-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
    padding: 34px 0 38px;
  }

  .aldiyar-unified-footer__brand {
    grid-column: 1 / -1;
  }

  .aldiyar-unified-footer__statement {
    margin-top: 20px;
  }

  .aldiyar-unified-footer__location {
    margin-top: 16px;
  }

  .aldiyar-unified-footer__group {
    gap: 10px;
  }

  .aldiyar-unified-footer__heading {
    margin-bottom: 8px;
  }

  .aldiyar-unified-footer__contact {
    grid-column: 1 / -1;
  }

  .aldiyar-unified-footer__bottom {
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .aldiyar-unified-footer__grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 26px 16px;
  }

  .aldiyar-unified-footer__brand,
  .aldiyar-unified-footer__contact {
    grid-column: 1 / -1;
  }

  .aldiyar-unified-footer__statement {
    font-size: 1.2rem;
  }

  .is-rtl .aldiyar-unified-footer__statement {
    font-size: 1.28rem;
    line-height: 1.65;
  }
}
/* End Phase ALDIYAR_UNIFIED_PUBLIC_FOOTER_01 */

/* Phase ALDIYAR_HOME_SERVICES_SECTION_01 */
.aldiyar-home-services-section {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: var(--ink);
}

.aldiyar-home-services-shell {
  width: var(--container);
  margin-inline: auto;
}

.aldiyar-home-services-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(300px, .72fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: end;
}

.aldiyar-home-services-title-block {
  grid-column: 1;
}

.aldiyar-home-services-intro {
  grid-column: 2;
  padding-bottom: clamp(4px, .8vw, 12px);
}

.is-rtl .aldiyar-home-services-title-block {
  grid-column: 2;
}

.is-rtl .aldiyar-home-services-intro {
  grid-column: 1;
  grid-row: 1;
}

.aldiyar-home-services-heading .elyse-label {
  margin: 0 0 clamp(20px, 2.8vw, 34px);
  color: var(--copper-2);
}

.aldiyar-home-services-heading .section-title {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 5.7vw, 88px);
  line-height: 1.04;
}

.aldiyar-public.is-rtl
.aldiyar-home-services-heading .section-title {
  max-width: 11ch;
  font-size: clamp(50px, 5.9vw, 90px);
  line-height: 1.16;
}

.aldiyar-home-services-intro > p {
  max-width: 39rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.9;
}

.aldiyar-public.is-rtl
.aldiyar-home-services-intro > p {
  font-size: var(--ar-body-size);
  line-height: var(--ar-body-line);
  text-align: justify;
  text-justify: inter-word;
}



.aldiyar-home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:
    clamp(64px, 8vw, 118px)
    clamp(24px, 3.6vw, 54px);
  margin-top: clamp(72px, 10vw, 148px);
}

.aldiyar-home-service-card {
  min-width: 0;
}

.aldiyar-home-service-card-link {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.aldiyar-home-service-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 231, .12);
  background: var(--deep);
  isolation: isolate;
}

.aldiyar-home-service-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 9, 8, .02) 38%,
      rgba(10, 9, 8, .7) 100%
    );
  pointer-events: none;
  transition: opacity .55s var(--ease);
}

.aldiyar-home-service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.03);
  transform: scale(1.015);
  transition:
    filter .7s var(--ease),
    transform 1s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.aldiyar-home-service-number {
  position: absolute;
  z-index: 2;
  inset-inline-start: clamp(20px, 2.5vw, 34px);
  inset-block-end: clamp(18px, 2.5vw, 32px);
  color: rgba(244, 239, 231, .96);
  font-family: var(--font-en);
  font-size: clamp(42px, 4.5vw, 70px);
  font-weight: 300;
  line-height: .85;
  letter-spacing: -.06em;
}

.aldiyar-home-service-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: clamp(24px, 3vw, 38px);
}

.aldiyar-home-service-eyebrow {
  margin: 0 0 clamp(15px, 2vw, 24px);
  color: var(--copper-2);
  font-size: clamp(13px, .9vw, 15px);
  line-height: 1.5;
}

.aldiyar-home-service-content h3 {
  max-width: 15ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(27px, 2.35vw, 38px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.aldiyar-public.is-rtl
.aldiyar-home-service-content h3 {
  max-width: 14ch;
  font-size: clamp(29px, 2.55vw, 40px);
  line-height: 1.24;
  letter-spacing: -.01em;
}

.aldiyar-home-service-summary {
  max-width: 31rem;
  margin: clamp(16px, 2vw, 24px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.04vw, 18px);
  line-height: 1.86;
}

.aldiyar-public.is-rtl
.aldiyar-home-service-summary {
  font-size: var(--ar-body-size);
  line-height: var(--ar-body-line);
  text-align: justify;
  text-justify: inter-word;
}

.aldiyar-home-service-action {
  margin-top: auto;
  padding-top: clamp(24px, 3vw, 38px);
}

.aldiyar-home-services-footer {
  display: flex;
  justify-content: flex-start;
  margin-top: clamp(64px, 8vw, 112px);
}

@media (hover: hover) and (pointer: fine) {
  .aldiyar-home-service-card-link:hover
  .aldiyar-home-service-media img {
    filter: saturate(1) contrast(1.03);
    transform: scale(1.06);
  }

  .aldiyar-home-service-card-link:hover
  .aldiyar-home-service-media::after {
    opacity: .78;
  }

}

@media (max-width: 980px) {
  .aldiyar-home-services-heading,
  .is-rtl .aldiyar-home-services-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .aldiyar-home-services-title-block,
  .aldiyar-home-services-intro,
  .is-rtl .aldiyar-home-services-title-block,
  .is-rtl .aldiyar-home-services-intro {
    grid-column: 1;
    grid-row: auto;
  }

  .aldiyar-home-services-heading .section-title,
  .aldiyar-public.is-rtl
  .aldiyar-home-services-heading .section-title {
    max-width: 13ch;
  }

  .aldiyar-home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 76px 30px;
    margin-top: 84px;
  }
}

@media (max-width: 680px) {
  .aldiyar-home-services-heading .section-title,
  .aldiyar-public.is-rtl
  .aldiyar-home-services-heading .section-title {
    max-width: 12ch;
    font-size: clamp(38px, 12vw, 54px);
  }

  .aldiyar-home-services-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    margin-top: 68px;
  }

  .aldiyar-home-services-footer {
    margin-top: 62px;
  }

  .aldiyar-home-service-media {
    aspect-ratio: 4 / 5;
  }

  .aldiyar-home-service-content h3,
  .aldiyar-public.is-rtl
  .aldiyar-home-service-content h3 {
    max-width: 15ch;
    font-size: clamp(30px, 9vw, 39px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aldiyar-home-service-media::after,
  .aldiyar-home-service-media img {
    transition: none;
  }
}
/* End Phase ALDIYAR_HOME_SERVICES_SECTION_01 */

/* Phase ALDIYAR_TRUSTED_CLIENTS_MARQUEE_01 */
.trusted-clients-section {
  overflow: hidden;
}

.trusted-clients-inner {
  width: var(--container);
  margin-inline: auto;
}

.trusted-clients-heading {
  max-width: min(920px, 100%);
}

.trusted-clients-heading .section-title {
  overflow: visible;
}

.trusted-clients-intro {
  max-width: 760px;
  margin: clamp(18px, 2vw, 28px) 0 0;
  color: var(--ink-soft);
  font-size: var(--ar-body-size);
  line-height: var(--ar-body-line);
}

.is-ltr .trusted-clients-intro {
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.75;
}

.trusted-clients-marquee-shell {
  position: relative;
  margin-top: clamp(42px, 5vw, 72px);
}

.trusted-clients-viewport {
  --trusted-clients-gap: clamp(42px, 4.8vw, 78px);
  width: 100%;
  overflow: hidden;
  padding-block: 10px;
  background: var(--cream);
  direction: ltr;
}

.trusted-clients-track {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  gap: var(--trusted-clients-gap);
  direction: ltr;
}

.trusted-clients-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: max-content;
  max-width: none;
  gap: var(--trusted-clients-gap);
  direction: ltr;
}

.trusted-clients-track:not(.is-overflowing) {
  justify-content: center;
}

.trusted-clients-track.is-overflowing {
  width: max-content;
  will-change: transform;
  animation: aldiyar-trusted-clients-marquee var(--trusted-clients-duration, 60s) linear infinite;
  animation-delay: var(--trusted-clients-delay, 0s);
}

.trusted-clients-track.is-user-paused {
  animation-play-state: paused;
}

.trusted-client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
}

.trusted-client-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(220px, 28vw);
  max-height: 56px;
  object-fit: contain;
}

.trusted-clients-motion-toggle {
  position: absolute;
  inset-block-end: -56px;
  inset-inline-end: 0;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}

.trusted-clients-motion-toggle:hover,
.trusted-clients-motion-toggle:focus-visible {
  color: var(--ink);
  border-color: currentColor;
  background: rgba(244, 239, 231, .06);
}

.trusted-clients-motion-toggle[hidden] {
  display: none;
}

@keyframes aldiyar-trusted-clients-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--trusted-clients-shift, 0px)), 0, 0);
  }
}

@media (max-width: 760px) {
  .trusted-clients-intro {
    font-size: var(--ar-body-size-mobile);
  }

  .is-ltr .trusted-clients-intro {
    font-size: clamp(15px, 4.1vw, 18px);
  }

  .trusted-clients-marquee-shell {
    margin-top: clamp(34px, 9vw, 52px);
  }

  .trusted-clients-viewport {
    --trusted-clients-gap: clamp(30px, 10vw, 46px);
    padding-block: 8px;
  }

  .trusted-client-logo img {
    max-width: min(180px, 42vw);
    max-height: 48px;
  }

  .trusted-clients-motion-toggle {
    inset-block-end: -52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-clients-track.is-overflowing {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    animation: none !important;
    transform: none !important;
    will-change: auto;
    scrollbar-width: none;
  }

  .trusted-clients-track.is-overflowing::-webkit-scrollbar {
    display: none;
  }

  .trusted-clients-track.is-overflowing .trusted-clients-group {
    justify-content: flex-start;
  }

  .trusted-clients-motion-toggle {
    display: none !important;
  }
}
/* End Phase ALDIYAR_TRUSTED_CLIENTS_MARQUEE_01 */
