:root {
    --sand: #f2ede4;
    --sand-deep: #ded2c1;
    --paper: #faf8f3;
    --ink: #17211f;
    --ink-soft: #4f5d59;
    --aqua: #79b9ba;
    --aqua-dark: #275f62;
    --sun: #c9875d;
    --white: #fff;
    --border: rgba(23, 33, 31, 0.16);
    --shadow: 0 24px 70px rgba(17, 33, 31, 0.14);
    --shell: min(1240px, calc(100vw - 96px));
    --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --sans: "Helvetica Neue", Arial, sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
select {
    font: inherit;
}

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

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

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

svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

[data-lang="en"] {
    display: none;
}

html[lang="en"] [data-lang="ar"] {
    display: none;
}

html[lang="en"] [data-lang="en"] {
    display: inline;
}

html[lang="en"] p[data-lang="en"],
html[lang="en"] span.hero-sub[data-lang="en"] {
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    inset-inline-start: 20px;
    top: -60px;
    padding: 10px 18px;
    background: var(--ink);
    color: var(--white);
    transition: top .2s;
}

.skip-link:focus {
    top: 12px;
}

.page-loader {
    position: fixed;
    z-index: 999;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 22px;
    color: var(--ink);
    background: var(--sand);
    transition: opacity .7s var(--ease), visibility .7s;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    font: italic 64px/1 var(--serif);
    text-align: center;
}

.loader-line {
    width: 120px;
    height: 1px;
    background: rgba(23, 33, 31, .18);
    overflow: hidden;
}

.loader-line::after {
    content: "";
    display: block;
    width: 45%;
    height: 100%;
    background: var(--ink);
    animation: load 1.2s infinite var(--ease);
}

@keyframes load {
    from { transform: translateX(-120%); }
    to { transform: translateX(270%); }
}

.section-shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: 130px;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    transition: color .35s, background-color .35s, box-shadow .35s, transform .35s;
}

.site-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    width: var(--scroll-progress, 0%);
    height: 2px;
    background: var(--aqua);
    transition: width .08s linear;
}

.site-header.is-scrolled {
    color: var(--ink);
    background: rgba(250, 248, 243, .92);
    box-shadow: 0 10px 30px rgba(16, 31, 29, .06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
    width: min(1380px, calc(100vw - 64px));
    height: 86px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 245px;
}

.brand img,
.footer-brand img {
    width: 82px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: filter .35s;
}

.site-header.is-scrolled .brand img {
    filter: brightness(.28);
}

.brand-divider {
    width: 1px;
    height: 25px;
    background: currentColor;
    opacity: .35;
}

.brand-project {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .28em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.desktop-nav a {
    position: relative;
    font-size: 13px;
    font-weight: 500;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform .3s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 17px;
    min-width: 245px;
}

.lang-toggle,
.menu-toggle {
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.lang-toggle {
    min-width: 38px;
    padding: 8px 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
}

.nav-call {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
}

.nav-call svg {
    width: 17px;
    height: 17px;
}

.menu-toggle {
    position: relative;
    display: none;
    width: 36px;
    height: 36px;
}

.menu-toggle > span:not(.sr-only) {
    position: absolute;
    right: 7px;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform .3s, top .3s;
}

.menu-toggle > span:first-child { top: 13px; }
.menu-toggle > span:nth-child(2) { top: 21px; width: 16px; }
.menu-toggle[aria-expanded="true"] > span:first-child { top: 17px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { top: 17px; width: 22px; transform: rotate(-45deg); }

.mobile-menu {
    position: fixed;
    z-index: -1;
    inset: 0;
    padding: 120px 8vw 50px;
    color: var(--paper);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity .35s, visibility .35s, transform .35s;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.mobile-menu nav {
    display: grid;
}

.mobile-menu a {
    padding-block: 18px;
    font: 39px/1.15 var(--serif);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    color: var(--white);
    background: #28494c;
    isolation: isolate;
}

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

.hero-media {
    background: url("../../images/1B-back-Final-amends-m3.jpg") 52% center / cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 14s var(--ease) forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(12, 26, 26, .72) 0%, rgba(12, 26, 26, .34) 46%, rgba(12, 26, 26, .1) 75%),
        linear-gradient(0deg, rgba(10, 20, 20, .5) 0%, transparent 45%);
}

[dir="rtl"] .hero-overlay {
    background:
        linear-gradient(-90deg, rgba(12, 26, 26, .72) 0%, rgba(12, 26, 26, .34) 46%, rgba(12, 26, 26, .1) 75%),
        linear-gradient(0deg, rgba(10, 20, 20, .5) 0%, transparent 45%);
}

.hero-content {
    width: var(--shell);
    margin: 80px auto 0;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .25em;
}

.eyebrow-line {
    width: 52px;
    height: 1px;
    background: currentColor;
}

.hero h1 {
    max-width: 880px;
    margin: 0;
}

.hero-brand {
    display: block;
    font: italic clamp(76px, 10.4vw, 158px)/.84 var(--serif);
    letter-spacing: -.07em;
}

.hero-sub {
    display: block;
    max-width: 680px;
    margin-top: 27px;
    font: 400 clamp(28px, 3.1vw, 47px)/1.18 var(--serif);
}

.hero-copy {
    max-width: 610px;
    margin: 27px 0 36px;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 30px;
}

.button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 13px 25px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    cursor: pointer;
    transition: transform .25s var(--ease), color .25s, background .25s;
}

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

.button svg {
    width: 19px;
    height: 19px;
}

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

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

.button-light:hover {
    background: var(--sand);
}

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

.button-dark:hover {
    background: var(--aqua-dark);
}

.text-link {
    padding-block: 8px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.hero-bottom {
    position: absolute;
    right: 4vw;
    bottom: 28px;
    left: 4vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 11px;
    letter-spacing: .11em;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 9px;
}

.pulse {
    width: 7px;
    height: 7px;
    border: 1px solid currentColor;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .14);
}

.scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, .6);
    transform-origin: top;
    animation: scrollLine 1.8s infinite var(--ease);
}

@keyframes scrollLine {
    0% { transform: scaleY(0); }
    45% { transform: scaleY(1); transform-origin: top; }
    55% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.intro {
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 18%, rgba(121, 185, 186, .15), transparent 27%),
        var(--paper);
}

.intro-grid,
.section-head {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 7vw;
}

.section-kicker {
    padding-top: 10px;
}

.section-kicker > span {
    display: block;
    width: 42px;
    padding-bottom: 8px;
    color: var(--sun);
    font: italic 20px/1 var(--serif);
    border-bottom: 1px solid var(--sun);
}

.section-kicker p {
    margin: 15px 0 0;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
}

.display-title {
    margin: 0;
    font: 400 clamp(49px, 6.6vw, 95px)/.98 var(--serif);
    letter-spacing: -.04em;
}

.intro-copy {
    max-width: 890px;
}

.lead {
    max-width: 690px;
    margin: 42px 0 28px;
    color: var(--ink-soft);
    font-size: clamp(17px, 1.5vw, 21px);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 7px;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid var(--ink);
}

.arrow-link svg {
    width: 20px;
}

.facts {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.fact {
    min-height: 175px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-inline-end: 1px solid var(--border);
}

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

.fact strong {
    font: 400 clamp(35px, 3.4vw, 51px)/1 var(--serif);
}

.fact small {
    font: 600 10px/1 var(--sans);
    letter-spacing: .08em;
}

.fact > span {
    margin-top: 13px;
    color: var(--ink-soft);
    font-size: 12px;
}

.collections {
    color: var(--sand);
    background: var(--ink);
}

.collections .section-kicker p {
    color: rgba(255, 255, 255, .55);
}

.collections .section-head {
    margin-bottom: 100px;
}

.collection {
    display: grid;
    grid-template-columns: minmax(0, 1.17fr) minmax(410px, .83fr);
    min-height: 680px;
    margin-bottom: 100px;
    color: var(--ink);
    background: var(--sand);
}

.collection-bay {
    grid-template-columns: minmax(410px, .83fr) minmax(0, 1.17fr);
}

.collection-bay .collection-image {
    order: 2;
}

.collection-image {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.collection-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(12, 25, 24, .22), transparent 45%);
    pointer-events: none;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.collection:hover .collection-image img {
    transform: scale(1.025);
}

.collection-number {
    position: absolute;
    z-index: 1;
    right: 30px;
    bottom: 18px;
    color: rgba(255, 255, 255, .82);
    font: italic 66px/1 var(--serif);
}

[dir="rtl"] .collection-number {
    right: auto;
    left: 30px;
}

.collection-content {
    align-self: center;
    padding: 65px clamp(35px, 5vw, 75px);
}

.micro-label {
    margin: 0 0 16px;
    color: var(--sun);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
}

.collection-content h3 {
    margin: 0 0 23px;
    font: italic clamp(52px, 5vw, 76px)/1 var(--serif);
    letter-spacing: -.05em;
}

.collection-content > p:not(.micro-label) {
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
}

.unit-list {
    margin-block: 38px 30px;
    border-top: 1px solid var(--border);
}

.unit-row {
    min-height: 73px;
    display: grid;
    grid-template-columns: 1.5fr .5fr 1fr;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border);
}

.unit-row > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.unit-row strong {
    font: 35px/1 var(--serif);
}

.unit-row span {
    font-size: 11px;
}

.unit-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px !important;
    font-weight: 700;
    white-space: nowrap;
}

[dir="rtl"] .unit-price {
    align-items: flex-start;
}

.unit-price small {
    color: var(--ink-soft);
    font-size: 9px;
    font-weight: 500;
}

.price-note {
    margin: -55px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
    text-align: center;
}

.lifestyle {
    min-height: 850px;
    padding: 0;
    display: flex;
    align-items: center;
}

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

.lifestyle-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 30%, rgba(13, 27, 26, .45));
}

[dir="rtl"] .lifestyle-media::after {
    background: linear-gradient(-90deg, transparent 30%, rgba(13, 27, 26, .45));
}

.lifestyle-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle-panel {
    position: relative;
    width: min(500px, 42vw);
    margin-inline-start: auto;
    margin-inline-end: 6vw;
    padding: 70px;
    color: var(--paper);
    background: rgba(22, 39, 37, .94);
    box-shadow: var(--shadow);
}

.lifestyle-panel h2 {
    margin: 0 0 40px;
    font: 400 clamp(44px, 4.5vw, 67px)/1.02 var(--serif);
    letter-spacing: -.04em;
}

.lifestyle-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lifestyle-panel li {
    position: relative;
    padding: 16px 25px 16px 0;
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

[dir="rtl"] .lifestyle-panel li {
    padding: 16px 0 16px 25px;
}

.lifestyle-panel li::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--aqua);
}

[dir="rtl"] .lifestyle-panel li::before {
    right: 0;
    left: auto;
}

.payment {
    background:
        linear-gradient(rgba(255, 255, 255, .82), rgba(255, 255, 255, .82)),
        repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), var(--border) 25%);
}

.payment-grid {
    display: grid;
    grid-template-columns: 230px 1fr .7fr;
    align-items: center;
    gap: 6vw;
}

.payment-main {
    text-align: center;
}

.payment-pre,
.payment-title {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
}

.payment-figure {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--aqua-dark);
}

.payment-figure strong {
    font: 400 clamp(135px, 16vw, 230px)/.8 var(--serif);
    letter-spacing: -.08em;
}

.payment-figure span {
    margin-top: 10px;
    font: 400 clamp(45px, 5vw, 76px)/1 var(--serif);
}

.payment-title {
    margin-top: 22px;
    color: var(--ink-soft);
}

.payment-side {
    display: grid;
    gap: 20px;
}

.payment-side > div {
    padding: 28px 30px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .45);
}

.payment-side strong {
    color: var(--sun);
    font: 57px/1 var(--serif);
}

.payment-side p {
    margin: 8px 0 0;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.gallery {
    overflow: hidden;
    background: var(--sand);
}

.gallery-head {
    margin-bottom: 80px;
}

.gallery-grid {
    width: min(1440px, 100%);
    margin-inline: auto;
    padding-inline: 24px;
    display: grid;
    grid-template-columns: 1.2fr .8fr .9fr;
    grid-template-rows: 300px 300px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    min-width: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: #d5d0c8;
    cursor: zoom-in;
}

.gallery-item-1 {
    grid-row: 1 / 3;
}

.gallery-item-2 {
    grid-column: 2 / 4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .8s;
}

.gallery-item:hover img {
    transform: scale(1.035);
    filter: brightness(.88);
}

.gallery-expand {
    position: absolute;
    right: 17px;
    bottom: 17px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: rgba(255, 255, 255, .86);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(7px);
    transition: opacity .3s, transform .3s;
}

.gallery-item:hover .gallery-expand {
    opacity: 1;
    transform: none;
}

.gallery-expand svg {
    width: 17px;
}

.interest {
    min-height: 760px;
    color: var(--white);
    background: #1c3736;
    overflow: hidden;
}

.interest-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 43, 42, .97) 0%, rgba(18, 43, 42, .86) 48%, rgba(18, 43, 42, .65) 100%),
        url("../../images/Chalets-For-Sale-in-Silver-Sands-North-Coast.jpg") center / cover;
    opacity: .95;
}

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

.interest-grid {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
}

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

.interest-copy h2 {
    margin: 0 0 25px;
    font: 400 clamp(51px, 6vw, 84px)/.98 var(--serif);
    letter-spacing: -.045em;
}

.interest-copy > p:not(.micro-label) {
    max-width: 480px;
    color: rgba(255, 255, 255, .7);
}

.interest-actions {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, .55);
    background: transparent;
}

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

.site-footer {
    color: rgba(255, 255, 255, .72);
    background: #111c1b;
}

.footer-main {
    min-height: 220px;
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    align-items: center;
    gap: 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand img {
    width: 75px;
}

.footer-brand span {
    padding-inline-start: 15px;
    font-size: 10px;
    letter-spacing: .2em;
    border-inline-start: 1px solid rgba(255, 255, 255, .2);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 11px;
}

.footer-links a {
    transition: color .2s;
}

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

.back-top {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
}

.back-top svg {
    width: 18px;
}

.footer-legal {
    min-height: 80px;
    padding-block: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-legal p {
    max-width: 820px;
    margin: 0;
}

.footer-legal > span {
    white-space: nowrap;
}

.floating-actions {
    position: fixed;
    z-index: 80;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 9px;
}

[dir="rtl"] .floating-actions {
    right: auto;
    left: 22px;
    align-items: flex-start;
}

.float-action {
    height: 48px;
    min-width: 48px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(10, 25, 24, .22);
    font-size: 11px;
    font-weight: 600;
    transition: transform .25s var(--ease);
}

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

.float-action svg {
    width: 18px;
    height: 18px;
    fill: none;
}

.float-call {
    background: var(--ink);
}

.float-whatsapp {
    background: #1f9d63;
}

.float-whatsapp svg {
    fill: currentColor;
    stroke: none;
}

.lightbox {
    width: min(1100px, calc(100vw - 50px));
    max-width: none;
    padding: 0;
    border: 0;
    overflow: visible;
    background: transparent;
}

.lightbox::backdrop {
    background: rgba(8, 15, 14, .92);
    backdrop-filter: blur(10px);
}

.lightbox img {
    max-height: 84vh;
    width: auto;
    margin: auto;
    box-shadow: var(--shadow);
}

.lightbox-close {
    position: absolute;
    z-index: 2;
    top: -45px;
    right: 0;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.lightbox-close svg {
    width: 18px;
}

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

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1100px) {
    :root {
        --shell: min(100% - 56px, 980px);
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-actions,
    .brand {
        min-width: 0;
    }

    .collection,
    .collection-bay {
        grid-template-columns: 1fr 1fr;
    }

    .collection-content {
        padding: 45px 36px;
    }

    .unit-row {
        grid-template-columns: 1.4fr .55fr;
    }

    .unit-price {
        grid-column: 1 / 3;
        padding-bottom: 12px;
        align-items: flex-start;
    }

    [dir="rtl"] .unit-price {
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    :root {
        --shell: calc(100% - 40px);
    }

    .section {
        padding-block: 90px;
    }

    .nav-shell {
        width: calc(100% - 32px);
        height: 74px;
    }

    .nav-call span {
        display: none;
    }

    .brand-project {
        font-size: 9px;
    }

    .hero-content {
        margin-top: 60px;
    }

    .hero-brand {
        font-size: clamp(63px, 17vw, 108px);
    }

    .hero-sub {
        font-size: clamp(25px, 7vw, 38px);
    }

    .hero-copy {
        max-width: 90%;
        font-size: 14px;
    }

    .hero-bottom {
        right: 20px;
        left: 20px;
    }

    .intro-grid,
    .section-head,
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .section-kicker {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .section-kicker > span {
        flex: 0 0 auto;
    }

    .section-kicker p {
        margin: 0;
    }

    .facts {
        grid-template-columns: 1fr 1fr;
        margin-top: 65px;
    }

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

    .fact:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .collections .section-head {
        margin-bottom: 60px;
    }

    .collection,
    .collection-bay {
        grid-template-columns: 1fr;
        min-height: 0;
        margin-bottom: 55px;
    }

    .collection-bay .collection-image {
        order: 0;
    }

    .collection-image {
        min-height: 470px;
    }

    .collection-content {
        padding: 48px 35px;
    }

    .price-note {
        margin-top: -18px;
    }

    .lifestyle {
        min-height: 850px;
        align-items: flex-end;
        padding: 0 0 35px;
    }

    .lifestyle-panel {
        width: calc(100% - 40px);
        margin-inline: auto;
        padding: 45px;
    }

    .payment-main {
        padding-block: 15px;
    }

    .payment-side {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 430px 220px 220px;
    }

    .gallery-item-1 {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .gallery-item-2 {
        grid-column: 1 / 3;
    }

    .footer-main {
        grid-template-columns: 1fr auto;
        padding-block: 50px;
    }

    .footer-links {
        grid-row: 2;
        grid-column: 1 / 3;
        justify-content: flex-start;
    }

    [dir="rtl"] .footer-links {
        justify-content: flex-start;
    }

    .footer-legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 560px) {
    :root {
        --shell: calc(100% - 30px);
    }

    .section {
        padding-block: 75px;
    }

    .brand img {
        width: 64px;
    }

    .brand-divider {
        height: 20px;
    }

    .brand-project {
        letter-spacing: .16em;
    }

    .nav-actions {
        gap: 7px;
    }

    .mobile-menu a {
        font-size: 32px;
    }

    .hero-content {
        margin-top: 20px;
    }

    .hero-brand {
        font-size: clamp(55px, 19vw, 90px);
        letter-spacing: -.08em;
    }

    .eyebrow {
        letter-spacing: .15em;
    }

    .hero-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .hero-bottom {
        bottom: 15px;
    }

    .scroll-cue {
        display: none;
    }

    .display-title {
        font-size: clamp(43px, 14vw, 65px);
    }

    .lead {
        margin-top: 30px;
        font-size: 16px;
    }

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

    .fact {
        min-height: 135px;
        padding: 22px 17px;
    }

    .fact strong {
        font-size: 34px;
    }

    .collection-image {
        min-height: 310px;
    }

    .collection-content {
        padding: 38px 22px;
    }

    .collection-content h3 {
        font-size: 55px;
    }

    .unit-row {
        grid-template-columns: 1.35fr .65fr;
    }

    .unit-price {
        grid-column: 1 / 3;
    }

    .lifestyle {
        min-height: 760px;
    }

    .lifestyle-panel {
        padding: 38px 27px;
    }

    .payment-side {
        grid-template-columns: 1fr;
    }

    .gallery-head {
        margin-bottom: 50px;
    }

    .gallery-grid {
        padding-inline: 10px;
        grid-template-rows: 300px 180px 180px;
        gap: 8px;
    }

    .interest {
        padding-block: 85px;
    }

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

    .footer-main {
        grid-template-columns: 1fr auto;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .floating-actions {
        right: 12px;
        bottom: 12px;
    }

    [dir="rtl"] .floating-actions {
        right: auto;
        left: 12px;
    }

    .float-action {
        width: 48px;
        padding: 0;
    }

    .float-action > span {
        display: none !important;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
