:root {
    --crystal: #f8fbff;
    --white: #ffffff;
    --mist: #edf5fb;
    --soft-blue: #8ec5fc;
    --ocean: #3b82f6;
    --deep: #17324d;
    --ink: #10283d;
    --muted: #6e8191;
    --line: rgba(23, 50, 77, 0.14);
    --serif: "Italiana", Georgia, serif;
    --sans: "DM Sans", sans-serif;
    --shadow: 0 24px 70px rgba(30, 75, 112, 0.13);
    --shell: min(1280px, calc(100vw - 8vw));
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    margin: 0;
    background: var(--crystal);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}
body.no-scroll {
    overflow: hidden;
}
::selection {
    background: var(--soft-blue);
    color: var(--deep);
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    color: inherit;
    font: inherit;
}
img,
video {
    display: block;
    width: 100%;
}
svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 26px;
    background: var(--crystal);
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}
.loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}
.loader__mark {
    font-family: var(--serif);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--deep);
    letter-spacing: -0.06em;
}
.loader__line {
    width: 150px;
    height: 1px;
    overflow: hidden;
    background: rgba(23, 50, 77, 0.15);
}
.loader__line span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--ocean);
    animation: loadLine 1.2s ease-in-out infinite;
    transform-origin: left;
}
@keyframes loadLine {
    0% {
        transform: scaleX(0);
    }
    45% {
        transform: scaleX(1);
    }
    100% {
        transform: translateX(110%);
    }
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 18px;
    left: 50%;
    width: min(1440px, calc(100% - 36px));
    min-height: 66px;
    padding: 0 18px 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    color: var(--white);
    background: rgba(16, 40, 61, 0.14);
    backdrop-filter: blur(18px) saturate(130%);
    transform: translateX(-50%);
    transition:
        color 0.4s ease,
        background 0.4s ease,
        border 0.4s ease,
        box-shadow 0.4s ease,
        top 0.4s ease;
}
.site-header.is-scrolled {
    top: 10px;
    color: var(--deep);
    background: rgba(248, 251, 255, 0.88);
    border-color: rgba(23, 50, 77, 0.1);
    box-shadow: 0 12px 40px rgba(23, 50, 77, 0.09);
}
.brand {
    justify-self: start;
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand__name {
    font-family: var(--serif);
    font-size: 25px;
    letter-spacing: -0.02em;
}
.brand__place {
    margin-top: 6px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.7;
}
.desktop-nav {
    display: flex;
    gap: clamp(14px, 1.5vw, 28px);
}
.desktop-nav a {
    position: relative;
    padding: 22px 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    opacity: 0.78;
    transition: opacity 0.25s ease;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 15px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active {
    opacity: 1;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}
.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
}
.instagram-link {
    width: 38px;
    height: 38px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    opacity: 0.8;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        background 0.25s ease;
}
.instagram-link:hover {
    transform: rotate(8deg);
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
}
.instagram-link svg {
    width: 16px;
}
.language-picker {
    position: relative;
}
.language-picker__button {
    min-width: 60px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid currentColor;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: inherit;
    background: transparent;
    cursor: pointer;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
}
.language-picker__button svg {
    width: 9px;
    transition: transform 0.25s ease;
}
.language-picker.is-open .language-picker__button svg {
    transform: rotate(180deg);
}
.language-picker__menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 170px;
    padding: 8px;
    border: 1px solid rgba(23, 50, 77, 0.1);
    border-radius: 15px;
    background: rgba(248, 251, 255, 0.97);
    color: var(--deep);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
}
.language-picker.is-open .language-picker__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.language-picker__menu button {
    width: 100%;
    padding: 10px 11px;
    border: 0;
    border-radius: 9px;
    display: flex;
    justify-content: space-between;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 12px;
}
.language-picker__menu button:hover,
.language-picker__menu button[aria-selected="true"] {
    background: var(--mist);
}
.language-picker__menu button span {
    opacity: 0.45;
    font-size: 10px;
}
.menu-toggle {
    display: none;
    width: 40px;
    height: 38px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 15px;
    height: 1px;
    margin: 4px auto;
    background: currentColor;
    transition: transform 0.3s ease;
}
.menu-toggle.is-open span:first-child {
    transform: translateY(2.5px) rotate(45deg);
}
.menu-toggle.is-open span:last-child {
    transform: translateY(-2.5px) rotate(-45deg);
}
.mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    padding: 28px;
    border: 1px solid rgba(23, 50, 77, 0.1);
    border-radius: 18px;
    color: var(--deep);
    background: rgba(248, 251, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
}
.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mobile-menu nav {
    display: grid;
}
.mobile-menu nav a {
    padding: 10px 0;
    font-family: var(--serif);
    font-size: 27px;
    border-bottom: 1px solid var(--line);
}
.mobile-menu p {
    margin: 22px 0 0;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--deep);
}
.hero__video {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    animation: heroScale 14s ease-out both;
}
@keyframes heroScale {
    to {
        transform: scale(1);
    }
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(9, 28, 43, 0.35) 0%,
            rgba(9, 28, 43, 0.08) 38%,
            rgba(9, 28, 43, 0.52) 100%
        ),
        linear-gradient(
            90deg,
            rgba(8, 27, 43, 0.2),
            transparent 50%,
            rgba(8, 27, 43, 0.12)
        );
}
.hero__content {
    position: relative;
    z-index: 1;
    width: min(1000px, 88vw);
    padding-top: 60px;
    text-align: center;
}
.eyebrow {
    margin: 0 0 22px;
    color: var(--ocean);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}
.hero__eyebrow {
    color: rgba(255, 255, 255, 0.78);
    opacity: 0;
    animation: fadeUp 0.8s 0.65s forwards;
}
.hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(5.2rem, 14vw, 11.5rem);
    font-weight: 400;
    line-height: 0.78;
    letter-spacing: -0.055em;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    animation: fadeUp 1.1s 0.8s forwards;
}
.hero__tagline {
    margin: 40px 0 30px;
    font-family: var(--serif);
    font-size: clamp(1.15rem, 2.3vw, 1.65rem);
    letter-spacing: 0.06em;
    opacity: 0;
    animation: fadeUp 0.9s 1s forwards;
}
.button {
    min-width: 190px;
    height: 58px;
    padding: 0 24px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}
.button svg {
    width: 18px;
    transition: transform 0.25s ease;
}
.button:hover {
    transform: translateY(-3px);
}
.button:hover svg {
    transform: translateX(4px);
}
.button--light {
    background: rgba(255, 255, 255, 0.94);
    color: var(--deep);
    opacity: 0;
    animation: fadeUp 0.9s 1.15s forwards;
}
.hero__scroll {
    position: absolute;
    z-index: 1;
    bottom: 28px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
}
.hero__scroll span {
    width: 1px;
    height: 44px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
}
.hero__scroll span::after {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: white;
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(220%);
    }
}
.hero__scroll small {
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
}
.hero__index {
    position: absolute;
    right: 32px;
    bottom: 33px;
    z-index: 1;
    display: flex;
    gap: 16px;
    font-size: 8px;
    letter-spacing: 0.18em;
    opacity: 0.6;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    padding: clamp(100px, 12vw, 180px) 0;
}
.section-shell {
    width: var(--shell);
    margin: 0 auto;
}
h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3.3rem, 7vw, 6.6rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.045em;
}
h2 em {
    color: var(--ocean);
    font-style: italic;
    font-weight: 400;
}
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.5s cubic-bezier(0.2, 0.75, 0.25, 1),
        transform 0.5s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.reveal--delay {
    transition-delay: 0.08s;
}
.reveal--delay-2 {
    transition-delay: 0.16s;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.intro {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--crystal) 55%, #eaf5ff 100%);
}
.intro::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -200px;
    bottom: -230px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(142, 197, 252, 0.22),
        transparent 70%
    );
}
.intro__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.75fr;
    gap: clamp(70px, 10vw, 160px);
    align-items: center;
}
.intro__copy {
    max-width: 650px;
}
.intro__copy h2 {
    margin-bottom: 42px;
}
.body-copy {
    max-width: 600px;
    margin: 0;
    color: #536b7e;
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.85;
}
.body-copy--secondary {
    margin-top: 18px;
}
.signature {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.signature > span {
    width: 50px;
    height: 1px;
    background: var(--soft-blue);
}
.signature p {
    margin: 0;
    display: flex;
    flex-direction: column;
}
.signature strong {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
}
.signature small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.intro__visual {
    position: relative;
    justify-self: end;
    width: min(100%, 470px);
}
.arched-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.68;
    border-radius: 48% 48% 20px 20px / 22% 22% 20px 20px;
    box-shadow: var(--shadow);
    background: var(--mist);
}
.arched-image::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: inherit;
    pointer-events: none;
}
.arched-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s ease;
}
.arched-image:hover img {
    transform: scale(1.035);
}
.intro__stamp {
    position: absolute;
    right: -24px;
    bottom: 34px;
    width: 106px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--deep);
    color: white;
    box-shadow: 0 12px 28px rgba(23, 50, 77, 0.25);
}
.intro__stamp::after {
    content: "DS";
    position: absolute;
    font-family: var(--serif);
    font-size: 23px;
}
.intro__stamp span {
    position: absolute;
    inset: 7px;
    font-size: 7px;
    letter-spacing: 0.19em;
    word-spacing: 9px;
    animation: rotate 18s linear infinite;
}
@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.house {
    background: #edf4f8;
}
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 85px;
}
.section-heading__note {
    max-width: 330px;
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}
.house-facts {
    margin: -18px 0 70px;
    padding: 18px 24px;
    border: 1px solid rgba(31, 111, 177, 0.14);
    border-radius: 18px;
    display: grid;
    grid-template-columns: 0.7fr 0.8fr 0.75fr 2fr;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 55px rgba(31, 79, 115, 0.07);
    backdrop-filter: blur(12px);
}
.house-fact {
    min-height: 74px;
    padding: 8px 24px;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 15px;
}
.house-fact:last-child {
    border-right: 0;
}
.house-fact__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ocean);
    background: var(--pale-blue);
}
.house-fact__icon svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.house-fact > span:last-child {
    display: flex;
    flex-direction: column;
}
.house-fact b {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}
.house-fact small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.house-fact--morning p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}
.room-grid {
    display: grid;
    grid-template-columns: 1fr 1.06fr 0.88fr;
    gap: clamp(18px, 2.6vw, 42px);
    align-items: start;
}
.room-card {
    transition: transform 0.45s ease;
}
.room-card:hover {
    transform: translateY(-10px);
}
.room-card--two {
    margin-top: 80px;
}
.room-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.76;
    border-radius: 180px 180px 14px 14px;
    box-shadow: 0 18px 50px rgba(23, 50, 77, 0.1);
}
.room-card--two .room-card__image {
    border-radius: 14px;
    aspect-ratio: 0.82;
}
.room-card--three .room-card__image {
    border-radius: 14px 160px 14px 14px;
}
.room-card__image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.room-card:hover img {
    transform: scale(1.045);
}
.room-card__image span {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(14, 39, 59, 0.35);
    backdrop-filter: blur(10px);
    font-size: 9px;
}
.room-card__content {
    padding: 25px 10px 0;
}
.room-card__content h3 {
    margin: 0 0 13px;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.3vw, 2.25rem);
    font-weight: 400;
    line-height: 1.15;
}
.room-card__content p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.pool-story {
    position: relative;
    min-height: 860px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--deep);
}
.pool-story__image {
    position: absolute;
    inset: 0;
    opacity: 0.88;
}
.pool-story__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(8, 29, 46, 0.08) 20%,
        rgba(8, 29, 46, 0.18) 50%,
        rgba(8, 29, 46, 0.68) 100%
    );
}
.pool-story__image img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center;
    transform: translateY(-4%);
}
.pool-story__panel {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: min(590px, 46vw);
    margin-right: 7vw;
    padding: clamp(45px, 6vw, 85px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 32px 32px 160px 32px;
    color: white;
    background: rgba(12, 42, 64, 0.55);
    backdrop-filter: blur(15px);
}
.pool-story__panel .eyebrow {
    color: var(--soft-blue);
}
.pool-story__panel h2 {
    font-size: clamp(3.4rem, 5.7vw, 5.5rem);
}
.pool-story__panel h2 em {
    color: #c6e4ff;
}
.pool-story__panel > p:not(.eyebrow) {
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.85;
}
.pool-story__details {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.pool-story__details span {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.pool-story__details b {
    color: var(--soft-blue);
    font-size: 9px;
    letter-spacing: 0.15em;
}
.pool-story__details small {
    font-size: 9px;
    letter-spacing: 0.07em;
}

.gallery {
    background: var(--crystal);
}
.gallery__heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    margin-bottom: 40px;
}
.gallery__heading .eyebrow {
    grid-column: 1 / -1;
}
.gallery__heading p:last-child {
    justify-self: end;
    max-width: 360px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 34px;
}
.gallery-filter {
    padding: 10px 22px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: transparent;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}
.gallery-filter:hover {
    border-color: var(--ocean);
    color: var(--deep);
}
.gallery-filter.is-active {
    border-color: var(--deep);
    background: var(--deep);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 15px;
    aspect-ratio: 4 / 5;
    background: linear-gradient(
        110deg,
        var(--mist) 8%,
        #ffffff 18%,
        var(--mist) 33%
    );
    background-size: 200% 100%;
    animation: galleryShimmer 1.6s ease-in-out infinite;
    cursor: zoom-in;
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s ease,
        opacity 0.3s ease,
        visibility 0.3s ease;
}
.gallery-item.is-filtered-out {
    opacity: 0;
    transform: scale(0.82);
    pointer-events: none;
}
.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(8, 29, 46, 0) 50%,
        rgba(8, 29, 46, 0.72) 100%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.gallery-item::after {
    content: "+";
    position: absolute;
    z-index: 2;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(17, 47, 70, 0.35);
    backdrop-filter: blur(8px);
    font-size: 20px;
    font-weight: 300;
    opacity: 0;
    transform: scale(0.8);
    transition: 0.3s ease;
}
.gallery-item img {
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition:
        transform 0.8s ease,
        opacity 0.5s ease;
}
.gallery-item.is-loaded {
    animation: none;
    background: var(--mist);
}
.gallery-item.is-loaded img {
    opacity: 1;
}
.gallery-item > span {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 16px;
    color: white;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(23, 50, 77, 0.2);
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-item:hover::before,
.gallery-item:hover::after,
.gallery-item:hover > span {
    opacity: 1;
    transform: none;
}
@keyframes galleryShimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.gallery-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}
.gallery-more {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 30px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: transparent;
    color: var(--deep);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}
.gallery-more:hover {
    border-color: var(--ocean);
    background: var(--mist);
    transform: translateY(-2px);
}
.gallery-more__label--less {
    display: none;
}
.gallery-more.is-expanded .gallery-more__label--more {
    display: none;
}
.gallery-more.is-expanded .gallery-more__label--less {
    display: inline;
}
.gallery-more__icon {
    width: 11px;
    transition: transform 0.3s ease;
}
.gallery-more.is-expanded .gallery-more__icon {
    transform: rotate(180deg);
}
.gallery-more[hidden] {
    display: none;
}
@media (prefers-reduced-motion: reduce) {
    .gallery-item {
        animation: none;
    }
}

.amenities {
    position: relative;
    overflow: hidden;
    color: white;
    background: var(--deep);
}
.amenities::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 78% 10%,
            rgba(92, 167, 235, 0.25),
            transparent 28%
        ),
        radial-gradient(
            circle at 5% 90%,
            rgba(142, 197, 252, 0.1),
            transparent 30%
        );
}
.amenities__layout {
    position: relative;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(70px, 10vw, 150px);
}
.amenities__intro {
    position: relative;
}
.amenities__intro .eyebrow {
    color: var(--soft-blue);
}
.amenities__intro h2 {
    font-size: clamp(3.4rem, 5.6vw, 5.5rem);
}
.amenities__intro h2 em {
    color: #b7ddff;
}
.amenities__intro > p:not(.eyebrow) {
    max-width: 400px;
    margin: 35px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.85;
}
.amenities__monogram {
    margin-top: 70px;
    font-family: var(--serif);
    font-size: 8rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.035);
}
.amenities__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.amenity {
    padding: 33px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
}
.amenity:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.amenity:nth-last-child(-n + 2) {
    border-bottom: 0;
}
.amenity__icon {
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--soft-blue);
}
.amenity__icon svg {
    width: 22px;
}
.amenity h3 {
    margin: 2px 0 7px;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
}
.amenity p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.7;
}
.barbecue {
    position: relative;
    overflow: hidden;
    background: #f6f1e9;
}
.barbecue::before {
    content: "OUTDOOR";
    position: absolute;
    right: -2vw;
    top: 5%;
    color: rgba(24, 78, 110, 0.035);
    font-family: var(--serif);
    font-size: clamp(6rem, 15vw, 13rem);
    letter-spacing: -0.04em;
}
.barbecue__grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: clamp(70px, 10vw, 155px);
    align-items: center;
}
.barbecue__visual {
    position: relative;
    width: min(100%, 520px);
    padding: 20px 0 0 24px;
}
.barbecue__visual::before {
    content: "";
    position: absolute;
    inset: 0 22px 22px 0;
    border: 1px solid rgba(31, 111, 177, 0.24);
    border-radius: 190px 190px 18px 18px;
}
.barbecue__frame {
    position: relative;
    z-index: 1;
    aspect-ratio: 0.78;
    overflow: hidden;
    border-radius: 180px 180px 16px 16px;
    box-shadow: 0 28px 65px rgba(25, 65, 92, 0.16);
}
.barbecue__frame img {
    height: 100%;
    object-fit: cover;
}
.barbecue__number {
    position: absolute;
    z-index: 2;
    right: -35px;
    bottom: 55px;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: var(--ocean);
    font-family: var(--serif);
    font-size: 20px;
    box-shadow: 0 16px 35px rgba(31, 111, 177, 0.25);
}
.barbecue__copy {
    position: relative;
    max-width: 580px;
}
.barbecue__copy > p:not(.eyebrow) {
    max-width: 540px;
    margin-top: 34px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.95;
}
.barbecue__line {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.barbecue__line span {
    width: 70px;
    height: 1px;
    background: var(--ocean);
}
.barbecue__line small {
    color: var(--ocean);
    font-size: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.rates {
    position: relative;
    overflow: hidden;
    background: #eaf3f8;
}
.rates__heading {
    margin-bottom: 70px;
    display: grid;
    grid-template-columns: 0.55fr 1fr;
    align-items: end;
}
.rates__heading .eyebrow {
    align-self: start;
}
.rates__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 24px;
    align-items: stretch;
}
.rate-card {
    min-height: 430px;
    padding: clamp(34px, 5vw, 68px);
    border: 1px solid rgba(31, 111, 177, 0.15);
    border-radius: 24px 24px 100px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 70px rgba(32, 83, 118, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.rate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 75px rgba(32, 83, 118, 0.14);
}
.rate-card--high {
    color: white;
    background: linear-gradient(145deg, #123b56, #1c608c);
}
.rate-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rate-card__top span {
    font-family: var(--serif);
    font-size: 15px;
    opacity: 0.65;
}
.rate-card__top small {
    padding: 8px 13px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.75;
}
.rate-card__dates {
    margin-bottom: 18px;
    color: var(--ocean);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.rate-card--high .rate-card__dates {
    color: #cbe5f8;
}
.rate-card h3 {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 400;
}
.rate-card h3 b {
    font-family: var(--serif);
    font-size: clamp(4.2rem, 7vw, 7.1rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.9;
}
.rate-card h3 small {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.55;
}
.rate-card > div:last-child > p:last-child {
    max-width: 460px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}
.rate-card--high > div:last-child > p:last-child {
    color: rgba(255, 255, 255, 0.62);
}

.location {
    background: linear-gradient(150deg, #f8fbff, #e9f4fc);
}
.location__grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: clamp(70px, 11vw, 170px);
    align-items: center;
}
.location__visual {
    position: relative;
    width: min(100%, 520px);
}
.arched-image--wide {
    aspect-ratio: 0.8;
    border-radius: 250px 250px 18px 18px;
}
.location__coordinates {
    position: absolute;
    right: -30px;
    bottom: 65px;
    padding: 20px 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: white;
    background: var(--ocean);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    font-size: 9px;
    letter-spacing: 0.12em;
}
.location__copy {
    max-width: 570px;
}
.location__copy > p:not(.eyebrow) {
    max-width: 520px;
    margin: 38px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}
.location__facts {
    margin-bottom: 38px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.location__facts span {
    display: flex;
    flex-direction: column;
}
.location__facts small {
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.location__facts b {
    margin-top: 5px;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--deep);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.text-link svg {
    width: 17px;
    transition: transform 0.25s ease;
}
.text-link:hover svg {
    transform: translateX(4px);
}

.reviews {
    overflow: hidden;
    background: #eaf2f7;
}
.reviews__header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 70px;
}
.reviews__header .eyebrow {
    grid-column: 1 / -1;
}
.reviews__rating {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0 12px;
    margin-bottom: 8px;
}
.reviews__rating b {
    grid-row: span 2;
    font-family: var(--serif);
    font-size: 47px;
    font-weight: 400;
    line-height: 1;
}
.reviews__rating span {
    color: #e7b24d;
    font-size: 11px;
    letter-spacing: 0.12em;
}
.reviews__rating small {
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.reviews__track {
    display: grid;
    grid-template-columns: 0.94fr 1.12fr 0.94fr;
    gap: 22px;
    align-items: center;
}
.review-card {
    min-height: 390px;
    padding: 35px;
    border: 1px solid rgba(23, 50, 77, 0.09);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 16px 40px rgba(23, 50, 77, 0.05);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}
.review-card--featured {
    min-height: 455px;
    color: white;
    background: linear-gradient(155deg, #326fac, var(--deep));
}
.review-card__top {
    display: flex;
    justify-content: space-between;
    color: #e7b24d;
    font-size: 10px;
    letter-spacing: 0.1em;
}
.review-card__top b {
    color: currentColor;
    opacity: 0.38;
    font-size: 9px;
}
.review-card blockquote {
    margin: 48px 0 35px;
    font-family: var(--serif);
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
    line-height: 1.45;
}
.review-card--featured blockquote {
    font-size: clamp(1.35rem, 1.9vw, 1.75rem);
}
.review-card footer {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 13px;
}
.review-card--featured footer {
    border-color: rgba(255, 255, 255, 0.16);
}
.review-card footer > span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: var(--ocean);
    font-size: 9px;
}
.review-card footer div {
    display: flex;
    flex-direction: column;
}
.review-card footer strong {
    font-size: 11px;
    font-weight: 600;
}
.review-card footer small {
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.review-card--featured footer small {
    color: rgba(255, 255, 255, 0.5);
}

.booking {
    position: relative;
    min-height: 780px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: white;
}
.booking__backdrop {
    position: absolute;
    inset: 0;
}
.booking__backdrop img {
    height: 100%;
    object-fit: cover;
}
.booking__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(8, 29, 46, 0.88), rgba(8, 29, 46, 0.57)),
        linear-gradient(0deg, rgba(8, 29, 46, 0.25), transparent);
}
.booking__content {
    position: relative;
    z-index: 1;
    width: min(800px, 88vw);
    text-align: center;
}
.booking__content .eyebrow {
    color: var(--soft-blue);
}
.booking__content h2 {
    font-size: clamp(3.8rem, 8vw, 7.2rem);
}
.booking__content h2 em {
    color: #bfddf8;
}
.booking__content > p:not(.eyebrow) {
    margin: 30px 0 45px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
.booking__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.booking-button {
    min-height: 82px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 45px 1fr 20px;
    align-items: center;
    gap: 14px;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}
.booking-button:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.18);
}
.booking-button--whatsapp {
    background: rgba(35, 142, 91, 0.28);
}
.booking-button__icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--deep);
    background: white;
}
.booking-button__icon svg {
    width: 19px;
}
.booking-button > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}
.booking-button small {
    margin-bottom: 3px;
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.65;
}
.booking-button b {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
}
.booking-button__arrow {
    width: 18px;
    transition: transform 0.25s ease;
}
.booking-button:hover .booking-button__arrow {
    transform: translateX(4px);
}

.site-footer {
    padding: 70px 5vw 25px;
    color: white;
    background: #0b2539;
}
.site-footer__top {
    padding-bottom: 65px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.brand--footer .brand__name {
    font-size: 38px;
}
.site-footer__top p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}
.site-footer__links {
    display: flex;
    gap: 35px;
}
.site-footer__links a {
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: border-color 0.25s ease;
}
.site-footer__links a:hover {
    border-color: white;
}
.site-footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    letter-spacing: 0.08em;
}
.back-to-top {
    color: white;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    padding: 5vw;
    display: grid;
    place-items: center;
    background: rgba(6, 23, 36, 0.94);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}
.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}
.lightbox img {
    max-width: min(900px, 80vw);
    max-height: 82vh;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.96);
    transition: transform 0.4s ease;
}
.lightbox.is-open img {
    transform: scale(1);
}
.lightbox__close,
.lightbox__nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: transparent;
    cursor: pointer;
    transition: background 0.25s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.12);
}
.lightbox__close {
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    font-size: 25px;
    font-weight: 300;
}
.lightbox__nav {
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
}
.lightbox__nav--prev {
    left: 28px;
}
.lightbox__nav--next {
    right: 28px;
}
.lightbox__count {
    position: absolute;
    bottom: 23px;
    left: 50%;
    color: rgba(255, 255, 255, 0.6);
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 0.18em;
}

html[dir="rtl"] body {
    font-family: "Noto Sans Arabic", sans-serif;
}
html[dir="rtl"] h2,
html[dir="rtl"] .hero h1,
html[dir="rtl"] .brand__name,
html[dir="rtl"] .room-card h3,
html[dir="rtl"] .review-card blockquote,
html[dir="rtl"] .location__facts b,
html[dir="rtl"] .booking-button b {
    font-family: "Noto Sans Arabic", sans-serif;
    letter-spacing: -0.03em;
}
html[dir="rtl"] .intro__visual {
    justify-self: start;
}
html[dir="rtl"] .gallery__heading p:last-child {
    justify-self: start;
}
html[dir="rtl"] .booking-button {
    text-align: right;
}
html[dir="rtl"] .language-picker__menu {
    right: auto;
    left: 0;
}

@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }
    .site-header {
        grid-template-columns: 1fr auto;
    }
    .menu-toggle {
        display: block;
    }
    .intro__grid {
        grid-template-columns: 1fr 0.75fr;
        gap: 60px;
    }
    .room-grid {
        gap: 22px;
    }
    .house-facts {
        grid-template-columns: 1fr 1fr;
    }
    .house-fact:nth-child(2) {
        border-right: 0;
    }
    .house-fact:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
    .barbecue__grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .barbecue__number {
        right: -20px;
    }
    .rates__heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pool-story__panel {
        width: min(570px, 57vw);
        margin-right: 4vw;
    }
    .amenities__layout {
        gap: 60px;
    }
}

@media (max-width: 820px) {
    :root {
        --shell: min(100% - 40px, 680px);
    }
    .site-header {
        width: calc(100% - 20px);
        top: 10px;
    }
    .instagram-link {
        display: none;
    }
    .hero__index {
        display: none;
    }
    .hero h1 {
        font-size: clamp(5rem, 21vw, 8rem);
    }
    .intro__grid,
    .location__grid {
        grid-template-columns: 1fr;
    }
    .intro__copy {
        order: 1;
    }
    .intro__visual {
        order: 0;
        justify-self: center;
        width: min(80vw, 430px);
    }
    .intro__stamp {
        right: -20px;
    }
    .section-heading {
        align-items: start;
        flex-direction: column;
        margin-bottom: 55px;
    }
    .section-heading__note {
        max-width: 460px;
    }
    .room-grid {
        grid-template-columns: 1fr 1fr;
    }
    .room-card--two {
        margin-top: 60px;
    }
    .room-card--three {
        grid-column: 1 / -1;
        width: 52%;
        margin: -20px auto 0;
    }
    .pool-story {
        min-height: 850px;
        align-items: end;
    }
    .pool-story__image::after {
        background: linear-gradient(
            0deg,
            rgba(8, 29, 46, 0.88),
            rgba(8, 29, 46, 0.08) 75%
        );
    }
    .pool-story__panel {
        width: calc(100% - 40px);
        margin: 0 auto 30px;
        padding: 45px;
        border-radius: 25px 25px 90px 25px;
    }
    .gallery__heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .gallery__heading p:last-child {
        justify-self: start;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .amenities__layout {
        grid-template-columns: 1fr;
    }
    .house-facts {
        margin-bottom: 55px;
    }
    .house-fact {
        padding: 15px 12px;
    }
    .house-fact--morning {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
    }
    .house-fact:nth-child(3) {
        border-right: 0;
    }
    .barbecue__grid {
        grid-template-columns: 1fr;
    }
    .barbecue__visual {
        width: min(88vw, 480px);
    }
    .barbecue__copy {
        max-width: none;
    }
    .rates__grid {
        grid-template-columns: 1fr;
    }
    .rate-card {
        min-height: 380px;
    }
    .amenities__monogram {
        display: none;
    }
    .location__visual {
        justify-self: center;
        width: min(80vw, 480px);
    }
    .location__copy {
        max-width: none;
    }
    .reviews__track {
        grid-template-columns: 1fr;
    }
    .review-card,
    .review-card--featured {
        min-height: 340px;
    }
    .reviews__header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .booking__actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    :root {
        --shell: calc(100% - 32px);
    }
    html {
        scroll-padding-top: 78px;
    }
    .site-header {
        min-height: 58px;
        padding: 0 9px 0 17px;
        border-radius: 15px;
    }
    .brand__name {
        font-size: 21px;
    }
    .brand__place {
        font-size: 7px;
    }
    .language-picker__button {
        min-width: 52px;
        height: 36px;
    }
    .menu-toggle {
        width: 38px;
        height: 36px;
    }
    .mobile-menu {
        padding: 22px;
    }
    .mobile-menu nav a {
        font-size: 24px;
    }
    .hero__content {
        padding-top: 0;
    }
    .hero__tagline {
        margin-top: 30px;
        font-size: 1rem;
    }
    .hero__scroll small {
        display: none;
    }
    .hero__scroll {
        bottom: 20px;
    }
    .section {
        padding: 90px 0;
    }
    h2 {
        font-size: clamp(3rem, 14vw, 4.4rem);
    }
    .eyebrow {
        margin-bottom: 16px;
    }
    .intro__grid {
        gap: 60px;
    }
    .intro__visual {
        width: 83vw;
    }
    .body-copy {
        font-size: 14px;
    }
    .room-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .room-card--two,
    .room-card--three {
        width: 100%;
        margin: 0;
        grid-column: auto;
    }
    .room-card__image,
    .room-card--two .room-card__image,
    .room-card--three .room-card__image {
        aspect-ratio: 0.82;
    }
    .pool-story {
        min-height: 780px;
    }
    .pool-story__panel {
        width: calc(100% - 24px);
        margin-bottom: 12px;
        padding: 34px 26px 45px;
        border-radius: 22px 22px 65px 22px;
    }
    .pool-story__panel h2 {
        font-size: 3.25rem;
    }
    .pool-story__details {
        gap: 8px;
    }
    .pool-story__details small {
        font-size: 8px;
    }
    .gallery-grid {
        gap: 10px;
    }
    .gallery-filters {
        gap: 8px;
    }
    .gallery-filter {
        padding: 8px 16px;
        font-size: 10px;
    }
    .amenities__grid {
        grid-template-columns: 1fr;
    }
    .amenity {
        padding: 25px 0;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    }
    .amenity:last-child {
        border-bottom: 0 !important;
    }
    .house-facts {
        grid-template-columns: 1fr;
        padding: 8px 18px;
    }
    .house-fact,
    .house-fact:nth-child(n) {
        min-height: 82px;
        padding: 14px 4px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .house-fact:last-child {
        border-bottom: 0;
    }
    .house-fact--morning {
        grid-column: auto;
    }
    .barbecue__visual {
        width: calc(100% - 18px);
        padding-left: 12px;
    }
    .barbecue__number {
        right: -12px;
        bottom: 38px;
        width: 62px;
        height: 62px;
    }
    .rate-card {
        min-height: 350px;
        padding: 32px 25px;
        border-radius: 20px 20px 70px 20px;
    }
    .rate-card h3 b {
        font-size: 4.5rem;
    }
    .location__visual {
        width: 84vw;
    }
    .location__coordinates {
        right: -10px;
    }
    .location__facts {
        grid-template-columns: 1fr;
    }
    .reviews__rating {
        justify-self: start;
    }
    .review-card {
        padding: 28px;
    }
    .booking {
        min-height: 760px;
    }
    .booking__content h2 {
        font-size: clamp(3.4rem, 16vw, 5rem);
    }
    .booking-button {
        grid-template-columns: 40px 1fr 18px;
        padding: 12px;
    }
    .booking-button__icon {
        width: 38px;
        height: 38px;
    }
    .site-footer__top {
        align-items: start;
        flex-direction: column;
        gap: 45px;
    }
    .site-footer__links {
        flex-wrap: wrap;
        gap: 22px;
    }
    .site-footer__bottom {
        align-items: start;
        flex-direction: column;
        gap: 12px;
    }
    .lightbox {
        padding: 75px 14px;
    }
    .lightbox img {
        max-width: 100%;
        max-height: 75vh;
    }
    .lightbox__nav {
        top: auto;
        bottom: 18px;
    }
    .lightbox__nav--prev {
        left: 18px;
    }
    .lightbox__nav--next {
        right: 18px;
    }
}

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