:root {
    --ink: #160b1c;
    --ink-soft: #2b1732;
    --plum: #4c2056;
    --plum-bright: #713378;
    --cream: #f2eadc;
    --paper: #faf7f1;
    --bronze: #c5a36a;
    --bronze-light: #e8d7b3;
    --white: #fff;
    --muted: #756b74;
    --line: rgba(36, 16, 43, .16);
    --danger: #a5222c;
    --focus: #ffd58e;
    --display: Baskerville, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
    --body: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
    --arabic: "Avenir Next Arabic", Tahoma, Arial, sans-serif;
    --shadow: 0 24px 70px rgba(14, 5, 17, .22);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

html, body {
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

[dir="rtl"] body {
    font-family: var(--arabic);
    letter-spacing: 0;
}

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

::-webkit-scrollbar {
    width: 11px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--plum);
    border: 3px solid var(--cream);
}

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

a {
    color: inherit;
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

button, input, select {
    font: inherit;
}

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

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    inset-block-start: 12px;
    inset-inline-start: 12px;
    transform: translateY(-160%);
    background: var(--white);
    color: var(--ink);
    padding: 10px 16px;
    font-weight: 700;
}

.skip-link:focus {
    transform: translateY(0);
}

.gtm-frame {
    display: none;
    visibility: hidden;
}

.site-header {
    position: absolute;
    z-index: 30;
    inset: 0 0 auto;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.header-inner {
    width: min(1440px, calc(100% - 64px));
    min-height: 88px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    min-height: 44px;
}

.brand img {
    width: 156px;
    height: auto;
}

.brand span {
    padding-inline-start: 13px;
    border-inline-start: 1px solid rgba(255, 255, 255, .45);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em;
}

.primary-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.6vw, 28px);
}

.primary-nav a, .language-link {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    inset-block-end: 6px;
    height: 1px;
    background: var(--bronze-light);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.language-link {
    justify-content: center;
    min-width: 58px;
    border: 1px solid rgba(255, 255, 255, .5);
    padding: 0 12px;
}

.nav-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: max(780px, 92svh);
    display: grid;
    align-items: center;
    color: var(--white);
    background: var(--ink);
    isolation: isolate;
}

.hero-media, .hero-media img, .hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    z-index: -3;
}

.hero-media img {
    object-fit: cover;
    object-position: 50% 48%;
}

.hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(15, 5, 19, .92) 0%, rgba(28, 9, 34, .68) 44%, rgba(19, 7, 22, .48) 72%, rgba(15, 5, 19, .7) 100%),
        linear-gradient(0deg, rgba(15, 5, 19, .72), transparent 48%);
}

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

.hero-inner {
    width: min(1340px, calc(100% - 80px));
    margin: 132px auto 66px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 440px);
    align-items: center;
    gap: clamp(56px, 8vw, 126px);
}

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

.hero-copy h1 {
    max-width: 13ch;
    margin: 0 0 24px;
    font-family: var(--display);
    font-size: clamp(58px, 6.6vw, 112px);
    font-weight: 400;
    line-height: .93;
    letter-spacing: -.035em;
    text-wrap: balance;
}

[dir="rtl"] .hero-copy h1 {
    max-width: 16ch;
    font-family: var(--arabic);
    font-size: clamp(48px, 5.3vw, 82px);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -.025em;
}

.hero-copy > p {
    max-width: 700px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(18px, 1.5vw, 23px);
    line-height: 1.58;
}

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

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .025em;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

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

.button-primary {
    background: var(--bronze-light);
    color: var(--ink);
    border-color: var(--bronze-light);
}

.button-primary:hover {
    background: var(--white);
    border-color: var(--white);
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .65);
    background: rgba(22, 11, 28, .24);
    backdrop-filter: blur(10px);
}

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

.button-outline-dark {
    color: var(--ink);
    border-color: var(--ink);
}

.button-light {
    background: var(--white);
    color: var(--ink);
}

.button-wide {
    width: 100%;
}

.hero-copy .independent-note {
    margin-top: 25px;
    margin-bottom: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .68);
}

.lead-panel {
    color: var(--ink);
    background: rgba(250, 247, 241, .97);
    padding: clamp(26px, 3.2vw, 42px);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.lead-panel h2 {
    margin: 0 0 8px;
    font-family: var(--display);
    font-size: clamp(29px, 2.3vw, 40px);
    font-weight: 400;
    line-height: 1.05;
}

[dir="rtl"] .lead-panel h2 {
    font-family: var(--arabic);
    font-weight: 600;
    line-height: 1.4;
}

.lead-panel > p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.lead-panel form {
    display: grid;
}

.lead-panel label {
    margin: 12px 0 5px;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .045em;
}

[dir="rtl"] .lead-panel label {
    letter-spacing: 0;
}

.lead-panel input, .lead-panel select {
    width: 100%;
    min-height: 49px;
    border: 0;
    border-bottom: 1px solid rgba(36, 16, 43, .34);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    padding: 8px 1px;
    outline: 0;
}

.lead-panel input:focus, .lead-panel select:focus {
    border-color: var(--plum-bright);
    box-shadow: 0 2px 0 var(--plum-bright);
}

.lead-panel [aria-invalid="true"] {
    border-color: var(--danger);
    box-shadow: 0 2px 0 var(--danger);
}

.lead-panel button {
    margin-top: 20px;
}

.lead-panel small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.45;
}

.field-error {
    min-height: 17px;
    margin: 3px 0 0;
    color: var(--danger);
    font-size: 11px;
    line-height: 1.3;
}

.form-alert, .error-summary {
    border: 1px solid rgba(165, 34, 44, .35);
    background: rgba(165, 34, 44, .08);
    color: #7d1018 !important;
    padding: 8px 10px;
    font-size: 12px;
}

.error-summary {
    margin-bottom: 8px;
}

.hp-field {
    position: absolute !important;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}

.project-snapshot {
    width: min(1180px, calc(100% - 64px));
    margin: -1px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-inline: 1px solid var(--line);
}

.project-snapshot > div {
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px clamp(24px, 3.5vw, 50px);
    border-inline-end: 1px solid var(--line);
}

.project-snapshot > div:last-child {
    border-inline-end: 0;
}

.project-snapshot strong {
    font-family: var(--display);
    font-size: clamp(28px, 2.7vw, 43px);
    font-weight: 400;
    line-height: 1.08;
}

[dir="rtl"] .project-snapshot strong {
    font-family: var(--arabic);
    font-weight: 600;
}

.project-snapshot span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
}

.wide-visual {
    position: relative;
    width: min(1440px, 100%);
    margin: 0 auto;
    background: var(--ink);
}

.wide-visual img {
    width: 100%;
    max-height: 780px;
    object-fit: cover;
}

.wide-visual figcaption {
    position: absolute;
    inset-inline: clamp(18px, 4vw, 58px);
    inset-block-end: 22px;
    width: fit-content;
    max-width: 680px;
    margin: 0;
    padding: 10px 14px;
    background: rgba(22, 11, 28, .8);
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    backdrop-filter: blur(10px);
}

.location-ledger, .price-ledger, .commercial-ledger, .launch-timeline, .contact-stage, .floorplans {
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(76px, 9vw, 132px) 0;
}

.location-ledger h2, .price-ledger h2, .commercial-ledger h2, .launch-timeline h2, .contact-stage h2, .floorplans h2,
.home-briefing h2, .section-heading h2, .editorial-copy h2, .final-cta h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(40px, 5.2vw, 76px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.025em;
    text-wrap: balance;
}

[dir="rtl"] .location-ledger h2, [dir="rtl"] .price-ledger h2, [dir="rtl"] .commercial-ledger h2,
[dir="rtl"] .launch-timeline h2, [dir="rtl"] .contact-stage h2, [dir="rtl"] .floorplans h2,
[dir="rtl"] .home-briefing h2, [dir="rtl"] .section-heading h2, [dir="rtl"] .editorial-copy h2, [dir="rtl"] .final-cta h2 {
    font-family: var(--arabic);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.location-ledger > p, .price-ledger > p, .commercial-ledger > p, .launch-timeline > p, .floorplans > p {
    max-width: 800px;
    color: var(--muted);
}

.location-ledger dl {
    margin: 52px 0 32px;
    border-top: 1px solid var(--line);
}

.location-ledger dl div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.location-ledger dt {
    font-size: clamp(19px, 2vw, 28px);
}

.location-ledger dd {
    margin: 0;
    color: var(--plum);
    font-family: var(--display);
    font-size: clamp(26px, 3.2vw, 46px);
}

[dir="rtl"] .location-ledger dd {
    font-family: var(--arabic);
    font-weight: 600;
}

.route-note {
    color: var(--ink) !important;
    font-weight: 650;
}

.price-ledger {
    padding-bottom: 72px;
}

.table-scroll {
    margin: 44px 0 24px;
    overflow-x: auto;
    border-top: 2px solid var(--ink);
}

table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
}

th, td {
    padding: 17px 10px;
    border-bottom: 1px solid var(--line);
    text-align: start;
}

th {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

[dir="rtl"] th {
    letter-spacing: 0;
    text-transform: none;
}

td:last-child {
    color: var(--plum);
    font-family: var(--display);
    font-size: 24px;
}

[dir="rtl"] td:last-child {
    font-family: var(--arabic);
    font-weight: 600;
}

.floorplans {
    padding-top: 10px;
}

.plan-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 42px;
    background: var(--line);
    border: 1px solid var(--line);
}

.plan-strip figure {
    margin: 0;
    padding: 20px;
    background: var(--white);
}

.plan-strip img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.plan-strip figcaption {
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-weight: 650;
    text-align: center;
}

.plan-strip figcaption strong, .plan-strip figcaption span {
    display: block;
}

.plan-strip figcaption span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 450;
    line-height: 1.55;
}

.home-unit-plans {
    padding-top: 16px;
}

.text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--plum);
    font-weight: 700;
}

.home-briefing {
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
    padding: 20px 0 clamp(82px, 10vw, 146px);
    border-top: 1px solid var(--line);
}

.home-briefing article {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(36px, 7vw, 96px);
    align-items: start;
    padding: clamp(42px, 6vw, 76px) 0;
    border-bottom: 1px solid var(--line);
}

.home-briefing h2 {
    font-size: clamp(38px, 4.3vw, 62px);
}

.home-briefing p {
    margin: 0;
    color: #453c44;
    font-size: clamp(17px, 1.25vw, 20px);
}

.home-briefing .text-link {
    grid-column: 2;
    width: fit-content;
    margin-top: -28px;
}

.home-media-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(1440px, 100%);
    margin: 0 auto;
    background: var(--ink);
}

.home-media-pair figure {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.home-media-pair img {
    width: 100%;
    height: clamp(420px, 44vw, 640px);
    object-fit: cover;
}

.home-media-pair figcaption {
    position: absolute;
    inset-inline: 18px;
    inset-block-end: 18px;
    width: fit-content;
    max-width: calc(100% - 36px);
    padding: 9px 12px;
    background: rgba(22, 11, 28, .82);
    color: rgba(255, 255, 255, .84);
    font-size: 12px;
    backdrop-filter: blur(8px);
}

.unit-focus {
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(76px, 9vw, 132px) 0;
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 8vw, 112px);
    align-items: center;
}

.unit-focus figure {
    margin: 0;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
}

.unit-focus figure img {
    width: 100%;
    height: 560px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.unit-focus figcaption {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

.unit-focus h2 {
    margin: 0 0 22px;
    font-family: var(--display);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.025em;
}

[dir="rtl"] .unit-focus h2 {
    font-family: var(--arabic);
    font-weight: 600;
    line-height: 1.35;
}

.unit-focus article > p {
    color: var(--muted);
}

.unit-focus dl {
    margin: 34px 0 0;
    border-top: 1px solid var(--line);
}

.unit-focus dl div {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.unit-focus dt {
    color: var(--muted);
    font-size: 13px;
}

.unit-focus dd {
    margin: 0;
    font-weight: 680;
}

.plan-strip-three {
    grid-template-columns: repeat(3, 1fr);
}

.commercial-ledger {
    padding-bottom: 82px;
}

.commercial-prices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 48px 0 32px;
    border: 1px solid var(--line);
}

.commercial-prices article {
    min-height: 260px;
    padding: clamp(30px, 5vw, 70px);
    border-inline-end: 1px solid var(--line);
}

.commercial-prices article:last-child {
    border-inline-end: 0;
}

.commercial-prices h3, .commercial-prices p {
    margin: 0;
}

.commercial-prices h3 {
    color: var(--muted);
    font-size: 15px;
}

.commercial-prices strong {
    display: block;
    margin: 16px 0 4px;
    color: var(--plum);
    font-family: var(--display);
    font-size: clamp(38px, 4.5vw, 66px);
    font-weight: 400;
    line-height: 1;
}

[dir="rtl"] .commercial-prices strong {
    font-family: var(--arabic);
    font-weight: 600;
}

.commercial-prices span {
    color: var(--muted);
    font-size: 13px;
}

.launch-timeline ol {
    list-style: none;
    margin: 58px 0 32px;
    padding: 0;
    counter-reset: launch;
    border-top: 1px solid var(--line);
}

.launch-timeline li {
    counter-increment: launch;
    position: relative;
    padding: 28px 0 28px 84px;
    border-bottom: 1px solid var(--line);
}

[dir="rtl"] .launch-timeline li {
    padding: 28px 84px 28px 0;
}

.launch-timeline li::before {
    content: "0" counter(launch);
    position: absolute;
    inset-inline-start: 0;
    color: var(--bronze);
    font-family: var(--display);
    font-size: 44px;
    line-height: 1;
}

.launch-timeline time {
    display: grid;
    grid-template-columns: minmax(210px, .7fr) 1.3fr;
    gap: 28px;
    align-items: baseline;
}

.launch-timeline time strong {
    font-size: clamp(22px, 2.4vw, 34px);
}

.launch-timeline time span {
    color: var(--muted);
}

.contact-stage {
    text-align: center;
}

.contact-stage h2 {
    max-width: 900px;
    margin-inline: auto;
}

.contact-number {
    display: inline-block;
    margin: 34px 0 20px;
    color: var(--plum);
    font-family: var(--display);
    font-size: clamp(42px, 7vw, 92px);
    line-height: 1;
    text-decoration: none;
}

[dir="rtl"] .contact-number {
    font-family: var(--arabic);
    direction: ltr;
}

.contact-actions {
    justify-content: center;
}

.contact-stage > p:last-child {
    color: var(--muted);
    font-size: 13px;
}

.editorial-copy {
    width: min(940px, calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(88px, 10vw, 154px) 0;
}

.editorial-copy h2 {
    margin-top: 72px;
    font-size: clamp(36px, 4.2vw, 60px);
}

.editorial-copy h2:first-child {
    margin-top: 0;
}

.editorial-copy p {
    max-width: 820px;
    margin: 20px 0 0;
    color: #453c44;
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.82;
}

.editorial-copy ul {
    margin: 20px 0 0;
    padding-inline-start: 1.2em;
}

.editorial-copy li {
    margin: 8px 0;
}

.faq-section {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(50px, 8vw, 120px);
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(80px, 9vw, 130px) 0;
    border-top: 1px solid var(--line);
}

.section-heading h2 {
    font-size: clamp(42px, 5vw, 68px);
}

.section-heading p {
    color: var(--muted);
}

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

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

.faq-list summary {
    position: relative;
    min-height: 68px;
    display: flex;
    align-items: center;
    padding: 16px 40px 16px 0;
    cursor: pointer;
    list-style: none;
    font-weight: 680;
    line-height: 1.4;
}

[dir="rtl"] .faq-list summary {
    padding: 16px 0 16px 40px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    inset-inline-end: 5px;
    color: var(--plum);
    font-family: var(--display);
    font-size: 28px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: -4px 0 20px;
    color: var(--muted);
}

.final-cta {
    width: min(1360px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(60px, 7vw, 100px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--plum);
    color: var(--white);
}

.final-cta h2 {
    max-width: 800px;
    font-size: clamp(40px, 5vw, 70px);
}

.final-cta p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .8);
}

.final-cta .button {
    flex: 0 0 auto;
}

.source-note {
    width: min(1120px, calc(100% - 64px));
    margin: 50px auto;
    padding-inline-start: 22px;
    border-inline-start: 2px solid var(--bronze);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.source-note strong {
    color: var(--ink);
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .75);
    padding: 76px max(32px, calc((100vw - 1240px) / 2)) 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr .7fr;
    gap: 60px;
}

.footer-brand {
    color: var(--white);
}

.footer-grid p {
    max-width: 360px;
    font-size: 13px;
}

.footer-grid nav, .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-grid nav a, .footer-contact a {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
}

.legal {
    margin: 48px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 11px;
}

.mobile-actions {
    display: none;
}

.thanks-page {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 28px;
    background: var(--ink);
    color: var(--white);
}

.thanks-shell {
    width: min(680px, 100%);
    text-align: center;
}

.thanks-shell > img {
    margin: 0 auto 48px;
    width: 190px;
    height: auto;
}

.thanks-mark {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 28px;
    border: 1px solid var(--bronze-light);
    border-radius: 50%;
    color: var(--bronze-light);
    font-size: 34px;
}

.thanks-shell h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(44px, 7vw, 72px);
    font-weight: 400;
    line-height: 1;
}

[dir="rtl"] .thanks-shell h1 {
    font-family: var(--arabic);
    font-weight: 600;
    line-height: 1.35;
}

.thanks-shell > p:not(.thanks-mark) {
    color: rgba(255, 255, 255, .75);
}

.thanks-actions {
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 1140px) {
    .header-inner {
        grid-template-columns: auto auto auto;
    }

    .nav-toggle {
        justify-self: end;
        width: 48px;
        height: 48px;
        display: grid;
        place-content: center;
        gap: 5px;
        border: 0;
        background: transparent;
        color: var(--white);
        cursor: pointer;
    }

    .nav-toggle span {
        width: 24px;
        height: 1px;
        display: block;
        background: currentColor;
        transition: transform .2s ease, opacity .2s ease;
    }

    .nav-toggle b {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip-path: inset(50%);
    }

    .nav-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .primary-nav {
        position: absolute;
        inset: 88px 0 auto;
        display: none;
        padding: 18px 32px 26px;
        background: rgba(22, 11, 28, .98);
        border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .primary-nav.is-open {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .primary-nav a {
        padding-inline: 12px;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 44px;
    }

    .hero-copy h1 {
        font-size: clamp(52px, 7vw, 78px);
    }

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

@media (max-width: 860px) {
    body {
        font-size: 16px;
    }

    .table-scroll {
        overflow-x: visible;
    }

    table {
        min-width: 0;
        table-layout: fixed;
    }

    th:first-child, td:first-child {
        width: 58%;
    }

    th:last-child, td:last-child {
        width: 42%;
        direction: ltr;
        unicode-bidi: isolate;
        white-space: nowrap;
        font-variant-numeric: tabular-nums;
    }

    td:last-child {
        font-size: 19px;
    }

    .header-inner {
        width: calc(100% - 32px);
        min-height: 74px;
        gap: 8px;
    }

    .brand img {
        width: 130px;
    }

    .brand span {
        display: none;
    }

    .language-link {
        min-width: 52px;
        padding-inline: 8px;
    }

    .primary-nav {
        inset-block-start: 74px;
        grid-template-columns: repeat(2, 1fr) !important;
        padding-inline: 20px;
    }

    .hero {
        min-height: auto;
        display: block;
        padding-top: 74px;
    }

    .hero-media, .hero-media img, .hero-shade {
        height: 690px;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(15, 5, 19, .96) 0%, rgba(20, 6, 24, .56) 72%, rgba(15, 5, 19, .62) 100%);
    }

    .hero-inner {
        width: 100%;
        margin: 0;
        display: block;
    }

    .hero-copy {
        min-height: 616px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 72px 22px 50px;
    }

    .hero-copy h1 {
        max-width: 11ch;
        font-size: clamp(48px, 14vw, 68px);
    }

    [dir="rtl"] .hero-copy h1 {
        max-width: 17ch;
        font-size: clamp(41px, 11vw, 58px);
    }

    .hero-copy > p {
        font-size: 17px;
    }

    .lead-panel {
        padding: 34px 22px 42px;
        background: var(--cream);
        box-shadow: none;
    }

    .lead-panel h2 {
        font-size: 32px;
    }

    .project-snapshot {
        width: 100%;
        grid-template-columns: 1fr;
        border: 0;
    }

    .project-snapshot > div {
        min-height: 128px;
        padding-inline: 24px;
        border-inline: 0;
        border-bottom: 1px solid var(--line);
    }

    .wide-visual img {
        min-height: 430px;
    }

    .location-ledger, .price-ledger, .commercial-ledger, .launch-timeline, .contact-stage, .floorplans,
    .editorial-copy, .faq-section {
        width: calc(100% - 40px);
    }

    .location-ledger, .price-ledger, .commercial-ledger, .launch-timeline, .contact-stage, .floorplans {
        padding-block: 74px;
    }

    .location-ledger h2, .price-ledger h2, .commercial-ledger h2, .launch-timeline h2, .contact-stage h2, .floorplans h2,
    .home-briefing h2, .section-heading h2, .editorial-copy h2, .final-cta h2 {
        font-size: 42px;
    }

    .home-briefing {
        width: calc(100% - 40px);
        padding-bottom: 82px;
    }

    .home-briefing article {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-briefing .text-link {
        grid-column: 1;
        margin-top: 0;
    }

    .home-media-pair {
        grid-template-columns: 1fr;
    }

    .home-media-pair img {
        height: 430px;
    }

    .unit-focus {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        padding-block: 74px;
    }

    .unit-focus figure {
        order: 2;
    }

    .unit-focus figure img {
        height: 500px;
    }

    .plan-strip-three {
        grid-template-columns: 1fr;
    }

    .commercial-prices {
        grid-template-columns: 1fr;
    }

    .commercial-prices article {
        min-height: 190px;
        border-inline-end: 0;
        border-bottom: 1px solid var(--line);
    }

    .commercial-prices article:last-child {
        border-bottom: 0;
    }

    .launch-timeline time {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .editorial-copy {
        padding-block: 90px;
    }

    .editorial-copy h2 {
        margin-top: 54px;
        font-size: 38px;
    }

    .faq-section {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-block: 82px;
    }

    .final-cta {
        width: 100%;
        padding: 64px 22px;
        flex-direction: column;
        align-items: flex-start;
    }

    .source-note {
        width: calc(100% - 40px);
    }

    .site-footer {
        padding: 62px 22px 104px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .mobile-actions {
        position: fixed;
        z-index: 50;
        inset: auto 0 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 8px max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
        background: rgba(22, 11, 28, .98);
        border-top: 1px solid rgba(255, 255, 255, .18);
    }

    .mobile-actions a {
        min-height: 49px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        color: var(--white);
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
    }

    .mobile-actions a + a {
        border-inline-start: 1px solid rgba(255, 255, 255, .2);
        color: var(--bronze-light);
    }
}

@media (max-width: 560px) {
    html {
        scroll-padding-bottom: 78px;
    }

    body {
        padding-bottom: 66px;
    }

    .primary-nav.is-open {
        grid-template-columns: 1fr !important;
    }

    .hero-actions .button {
        flex: 1 1 140px;
    }

    .plan-strip {
        grid-template-columns: 1fr;
    }

    .plan-strip img {
        height: 340px;
    }

    .location-ledger dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .location-ledger dd {
        font-size: 30px;
    }

    .launch-timeline li {
        padding-inline-start: 60px;
    }

    [dir="rtl"] .launch-timeline li {
        padding-inline: 60px 0;
    }

    .launch-timeline li::before {
        font-size: 32px;
    }

    .contact-number {
        font-size: clamp(34px, 11vw, 54px);
    }

    .contact-actions .button {
        width: 100%;
    }
}

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

    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
