@font-face {
    font-family: "Loew Next Arabic";
    src: url("../assets/fonts/loew-next-arabic-light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Loew Next Arabic";
    src: url("../assets/fonts/loew-next-arabic-regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Loew Next Arabic";
    src: url("../assets/fonts/loew-next-arabic-medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Loew Next Arabic";
    src: url("../assets/fonts/loew-next-arabic-extrabold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #23355B;
    --color-secondary: #25C0B3;
    --color-light: #E0E4D9;
    --color-beige: #CFCCBE;
    --color-white: #FFFFFF;
    --color-text: #23355B;
    --color-muted: #5c6b86;
    --container-width: 1200px;
    --section-spacing: 100px;
    --heading-size: clamp(22px, 2.45vw, 32px);
    --header-height: 92px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Loew Next Arabic", sans-serif;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
    line-height: 1.8;
}

img {
    max-width: 100%;
    height: auto;
}

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

button,
input,
textarea {
    font-family: inherit;
}

.skip-link {
    position: absolute;
    inset-inline-start: 16px;
    top: 0;
    transform: translateY(-150%);
    background: var(--color-primary);
    color: #fff;
    padding: 8px 14px;
    z-index: 1000;
}

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

.container {
    max-width: var(--container-width);
}

.container-xl {
    max-width: 1320px;
}

/* Header */
.site-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 50;
    height: var(--header-height);
    background: transparent;
    box-shadow: none;
}

.site-header.is-scrolled {
    position: fixed;
    top: 0;
    inset-inline: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(35, 53, 91, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: var(--header-height);
}

.site-logo img {
    width: 148px;
    height: auto;
    display: block;
}

.nav-list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(12px, 1.6vw, 26px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 400;
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
    transition: color 0.4s var(--ease);
}

.nav-list a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 1px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s var(--ease);
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.is-active {
    color: var(--color-secondary);
}

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

.header-actions {
    display: flex;
    flex-shrink: 0;
    background: var(--color-primary);
    overflow: hidden;
    min-height: 48px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.28);
    transition: background 0.4s var(--ease);
}

.action-btn:first-child {
    border-inline-start: 0;
}

.action-btn:hover,
.action-btn:focus-visible {
    background: #1b2948;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--color-primary);
    padding: 12px 11px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 1.5px;
    background: #fff;
    margin: 5px 0;
    transition: 0.4s var(--ease);
}

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

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

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

/* Hero */
.hero-section {
    position: relative;
    height: min(86vh, 880px);
    min-height: 620px;
    margin: 0;
    padding: 0;
    color: #fff;
}

.hero-media {
    position: absolute;
    inset: 0;
    background: #cfc8b8;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 0%;
    display: block;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 7vh;
}

.hero-title {
    margin: 0;
    font-size: var(--heading-size);
    font-weight: 300;
    line-height: 1.28;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

h1.hero-title {
    font-weight: 300;
}

.hero-title span {
    display: block;
}

.hero-line-bold {
    font-weight: 800;
}

.hero-line-light {
    font-weight: 300;
}

.page-news .hero-section,
.page-contact .hero-section {
    color: var(--color-primary);
}

.page-news .hero-media img,
.page-contact .hero-media img {
    object-position: center center;
}

.page-news .hero-title,
.page-contact .hero-title {
    text-shadow: none;
}

.page-news .hero-line-bold,
.page-contact .hero-line-bold {
    font-size: clamp(28px, 3.4vw, 44px);
}

.news-listing-section {
    padding: 72px 0 96px;
}

.contact-page-section {
    background: #fff;
    padding: 72px 0 96px;
}

.contact-page-heading {
    margin: 0 0 8px;
    text-align: start;
    font-size: var(--heading-size);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.4;
}

.contact-page-lead {
    margin: 0 0 36px;
    text-align: start;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.8;
}

.contact-page-panel {
    background: #e0dfd6;
    border-radius: 18px;
    padding: 22px 28px 24px;
}

.contact-page-panel .field {
    border-bottom: 1px solid #fff;
}

.contact-page-panel .field-message {
    border-bottom: 0;
    padding-top: 14px;
}

.contact-page-panel .field-message textarea {
    background: #d4d1c5;
    min-height: 140px;
    border-radius: 10px;
    padding: 14px 16px;
}

.contact-page-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 48px;
}

.contact-page-bar .social-list {
    margin: 0;
}

.contact-page-bar .social-list img,
.contact-page-bar .erth-logo img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(28%) saturate(1204%) hue-rotate(191deg) brightness(94%) contrast(92%);
}

.contact-page-brand {
    display: flex;
    align-items: center;
    gap: 22px;
}

.contact-page-details {
    border-inline-start: 1px solid rgba(35, 53, 91, 0.22);
    padding-inline-start: 22px;
}

.contact-page-phone {
    display: block;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.contact-page-email {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 300;
    color: var(--color-muted);
}

.about-developer-section {
    background: #f3f2ef;
    padding: 88px 0 100px;
}

.about-developer {
    max-width: none;
    margin: 0;
    text-align: start;
}

.about-developer-logo {
    display: block;
    width: 148px;
    height: auto;
    margin: 0 0 40px;
}

.about-developer p {
    margin: 0 0 28px;
    font-size: 15px;
    font-weight: 400;
    line-height: 2.15;
    color: #23355b;
    text-align: justify;
    text-align-last: start;
}

.about-developer p:last-child {
    margin-bottom: 0;
}

.about-vision-section {
    background: #fff;
    padding: 88px 0 100px;
}

.about-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 40px;
}

.about-vision-block {
    text-align: start;
}

.about-vision-block h2 {
    margin: 0 0 16px;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.4;
}

.about-vision-block p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 2.15;
    color: #23355b;
}

/* About */
.about-section {
    position: relative;
    background: #fff;
    padding: 90px 0 80px;
    overflow: hidden;
}

.deco-water-mark {
    position: absolute;
    left: -36px;
    top: -90px;
    width: min(300px, 30vw);
    height: auto;
    pointer-events: none;
}

.about-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-mark {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    object-fit: contain;
}

.section-kicker {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 300;
    color: #6b778c;
}

.section-title {
    margin: 0 0 22px;
    font-size: var(--heading-size);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.35;
}

.about-copy {
    margin: 0 auto;
    max-width: 720px;
    font-size: 15px;
    font-weight: 300;
    color: var(--color-muted);
    line-height: 2;
}

/* Features */
.features-section {
    background: var(--color-light);
    padding: 90px 0 100px;
}

.features-intro {
    margin-bottom: 56px;
}

.features-lead {
    margin: 12px auto 0;
    max-width: 640px;
    font-size: 15px;
    font-weight: 300;
}

.feature-item {
    text-align: center;
    padding: 10px 8px;
}

.feature-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
    transition: transform 0.55s var(--ease);
}

.feature-item:hover img {
    transform: translateY(-4px);
}

.feature-item h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* Experiences / water */
.experiences-section {
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
}

.experiences-bg {
    position: absolute;
    inset: 0;
}

.experiences-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.experiences-top {
    position: relative;
    min-height: 280px;
    padding: 40px 0 72px;
    color: #fff;
}

.experiences-copy-col {
    position: relative;
    z-index: 1;
    max-width: 460px;
    margin-inline-end: auto;
}

.experiences-title {
    font-size: var(--heading-size);
    font-weight: 300;
    line-height: 1.45;
    margin: 0 0 18px;
}

.experiences-title span {
    display: block;
    white-space: nowrap;
}

.experiences-line-bold {
    font-weight: 800;
}

.experiences-line-light {
    font-weight: 300;
}

.experiences-copy {
    max-width: 430px;
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.92);
}

.area-graphic {
    position: absolute;
    left: 0;
    top: 42%;
    transform: translateY(-50%);
    width: min(620px, 58%);
    height: auto;
    object-fit: contain;
    opacity: 0.72;
    pointer-events: none;
}

.amenities-wrap {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.amenities-card {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    padding: 18px 48px 22px;
    box-shadow: 0 24px 60px rgba(35, 53, 91, 0.12);
}

.amenity-item + .amenity-item {
    border-top: 1px solid #e8eaee;
}

.amenity-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: 0;
    padding: 28px 0;
    color: var(--color-primary);
    text-align: start;
}

.amenity-head {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 500;
}

.amenity-head img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.amenity-trigger:not(.collapsed) .amenity-head span {
    color: var(--color-secondary);
    font-weight: 800;
}

.amenity-arrow {
    display: flex;
    color: var(--color-primary);
    transition: transform 0.4s var(--ease);
    flex-shrink: 0;
}

.amenity-trigger:not(.collapsed) .amenity-arrow {
    transform: rotate(180deg);
}

.amenity-item .collapse p,
.amenity-item p {
    margin: 8px 54px 28px 16px;
    color: #7a8496;
    font-size: 14px;
    font-weight: 300;
    line-height: 2.15;
    max-width: 780px;
}

/* Infrastructure */
.infrastructure-section {
    background: #f3f2ee;
    padding: 90px 0 90px;
}

.infra-heading {
    font-weight: 300;
}

.infra-title-light {
    font-weight: 300;
}

.infra-title-bold {
    font-weight: 800;
}

.infra-item img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 16px;
}

.infra-item h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.infra-item p {
    margin: 4px 0 0;
    font-size: 12px;
    font-weight: 300;
    color: var(--color-muted);
    letter-spacing: 0.02em;
}

/* Night highlights */
.highlights-section {
    position: relative;
}

.highlights-visual {
    position: relative;
    min-height: 400px;
}

.highlights-visual > img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center center;
}

.highlights-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    background:
        radial-gradient(ellipse 58% 78% at 50% 50%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.55) 38%, rgba(255, 255, 255, 0.12) 68%, rgba(255, 255, 255, 0) 100%);
}

.highlight-main {
    text-align: center;
    margin-bottom: 40px;
}

.highlight-split {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.highlight-split .col-6 {
    text-align: center;
}

.highlight-split .col-6 + .col-6 {
    border-inline-start: 1px solid rgba(35, 53, 91, 0.18);
}

.stat-number {
    margin: 0;
    font-size: clamp(36px, 4.4vw, 64px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-primary);
}

.stat-label,
.statistics-section h3 {
    margin: 8px 0 0;
    font-size: 16px;
    font-weight: 500;
}

/* Stats grid */
.statistics-section {
    background: #fff;
    padding: 56px 0 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 52px;
    width: 100%;
}

.stat-item {
    text-align: start;
}

.stat-item .stat-number {
    margin-bottom: 6px;
}

.stat-item h3 {
    display: table;
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--color-primary);
    font-size: 15px;
    font-weight: 500;
}

.stat-meta {
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 300;
    color: var(--color-muted);
}

/* Contact */
.contact-section {
    position: relative;
    background-color: var(--color-beige);
    background-image: url("../assets/backgrounds/contact-background.webp");
    background-size: cover;
    background-position: center;
    padding: 90px 0 80px;
    overflow: hidden;
}

.deco-green {
    position: absolute;
    left: -120px;
    top: -160px;
    width: min(440px, 44vw);
    pointer-events: none;
}

.contact-heading {
    text-align: start;
    margin-bottom: 28px;
}

.interest-form {
    width: 100%;
    max-width: none;
}

.form-panel {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    padding: 28px 32px 22px;
}

.field {
    padding: 10px 0 14px;
    border-bottom: 1px solid rgba(35, 53, 91, 0.18);
}

.field-message {
    border-bottom: 0;
    padding-bottom: 0;
}

.field label {
    display: block;
    font-size: 13px;
    color: #8a8f84;
    margin-bottom: 6px;
}

.field input,
.field textarea {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--color-primary);
    outline: none;
    font-size: 15px;
    padding: 4px 0;
    resize: none;
    direction: rtl;
    text-align: start;
}

.field-message textarea {
    background: rgba(207, 204, 190, 0.45);
    min-height: 92px;
    padding: 12px 14px;
    border-radius: 4px;
}

.field input:focus,
.field textarea:focus {
    box-shadow: none;
}

.send-btn {
    margin-top: 18px;
    background: var(--color-primary);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 10px 42px;
    font-size: 16px;
    transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.send-btn:hover,
.send-btn:focus-visible {
    background: #1b2948;
    transform: translateY(-1px);
}

/* News */
.news-section {
    background: #fff;
    padding: 80px 0 90px;
}

.news-heading {
    text-align: start;
    margin-bottom: 36px;
}

.news-card {
    display: block;
    color: var(--color-primary);
    transition: transform 0.5s var(--ease);
}

.news-card:hover {
    transform: translateY(-6px);
}

.news-thumb {
    background: #eceae4;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.news-thumb img {
    width: 42%;
    height: auto;
    object-fit: contain;
    opacity: 0.55;
}

.news-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 8px;
}

.news-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-primary);
}

/* Footer */
.site-footer {
    background: var(--color-primary) url("../assets/backgrounds/footer-background.webp") center / cover no-repeat;
    color: #fff;
    padding: 70px 0 36px;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 32, 0.22);
    pointer-events: none;
}

.footer-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    align-items: flex-start;
}

.footer-mark {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 22px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.92;
    transition: color 0.4s var(--ease), opacity 0.4s var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--color-secondary);
}

.footer-brand-block {
    text-align: start;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 22px;
}

.erth-logo img {
    width: 110px;
    height: auto;
}

.footer-contact {
    border-inline-start: 1px solid rgba(255, 255, 255, 0.35);
    padding-inline-start: 22px;
}

.footer-phone {
    display: block;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.footer-email {
    font-size: 13px;
    font-weight: 300;
    opacity: 0.85;
}

.social-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.social-list a {
    width: 34px;
    height: 34px;
    border: 0;
    background: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.social-list img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.social-list a:hover,
.social-list a:focus-visible {
    background: none;
    color: inherit;
    opacity: 0.75;
    transform: translateY(-1px);
}

.legal-links {
    font-size: 11px;
    font-weight: 300;
    margin: 0 0 6px;
    opacity: 0.85;
}

.legal-links span {
    margin: 0 6px;
}

.copyright {
    margin: 0;
    font-size: 10px;
    letter-spacing: 0.08em;
    opacity: 0.7;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: var(--d, 0s);
}

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

:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 3px;
}

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

    .reveal,
    .feature-item img,
    .news-card,
    .send-btn,
    .nav-list a::after {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

@media (max-width: 1199.98px) {
    .nav-list {
        gap: 16px;
    }

    .action-btn {
        font-size: 11px;
        padding: 0 10px;
    }

    .site-logo img {
        width: 124px;
    }
}

@media (max-width: 991.98px) {
    .nav-toggle {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: var(--header-height);
        inset-inline: 0;
        background: rgba(255, 255, 255, 0.98);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s var(--ease);
        box-shadow: 0 16px 40px rgba(35, 53, 91, 0.1);
    }

    .main-navigation.is-open {
        max-height: 420px;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 24px 28px;
        gap: 14px;
    }

    .header-actions {
        display: none;
    }

    .site-header {
        position: absolute;
        background: transparent;
    }

    .site-header.is-scrolled {
        position: fixed;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(12px);
    }

    .hero-section {
        height: min(72vh, 720px);
        min-height: 520px;
    }

    .hero-content {
        height: 100%;
    }

    .experiences-copy {
        margin-inline-start: 0;
        max-width: 100%;
    }

    .experiences-title span {
        white-space: normal;
    }

    .experiences-top {
        min-height: 240px;
        padding: 28px 16px 56px;
    }

    .experiences-copy-col {
        max-width: 100%;
        padding-inline: 8px;
    }

    .area-graphic {
        width: min(480px, 54%);
        opacity: 0.65;
    }

    .amenities-wrap {
        padding: 0 16px;
    }

    .amenities-card {
        padding: 16px 24px 20px;
    }

    .amenity-trigger {
        padding: 22px 0;
    }

    .deco-green {
        opacity: 0.55;
        width: min(220px, 46vw);
    }

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

@media (max-width: 767.98px) {
    :root {
        --section-spacing: 64px;
        --header-height: 76px;
    }

    .legal-links,
    .copyright {
        text-align: center;
    }

    .deco-water-mark {
        display: none;
    }

    .experiences-title span {
        white-space: normal;
    }

    .experiences-top {
        min-height: 0;
        padding: 20px 20px 40px;
    }

    .experiences-copy-col {
        max-width: 100%;
        padding-inline: 4px;
    }

    .experiences-copy {
        max-width: 100%;
    }

    .amenities-wrap {
        padding: 0 20px;
    }

    .area-graphic {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: min(380px, 90%);
        display: block;
        margin: 0 auto 16px;
        opacity: 0.7;
    }

    .amenities-card {
        padding: 16px 18px 20px;
        border-radius: 22px;
        max-width: 100%;
    }

    .amenity-item p,
    .amenity-item .collapse p {
        margin: 4px 8px 20px;
    }

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

    .stat-item {
        text-align: center;
    }

    .stat-item h3 {
        margin-inline: auto;
    }

    .stat-meta {
        margin-inline: auto;
    }

    .highlights-visual > img {
        height: 360px;
    }

    .stat-number {
        font-size: 34px;
    }

    .form-panel {
        padding: 22px 18px;
    }

    .header-inner {
        padding-inline: 8px;
    }
}

@media (max-width: 767.98px) {
    .infra-last {
        display: flex;
        justify-content: center;
    }

    .infra-last .infra-item {
        width: 50%;
    }
}

/* Geographical location page */
.vital-section {
    background: #fff;
    padding: 80px 0 70px;
}

.vital-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.vital-pin {
    width: 64px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.vital-kicker {
    margin: 0 0 2px;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 800;
    color: var(--color-primary);
}

.vital-title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.4;
}

.vital-copy {
    max-width: 820px;
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 2.15;
    color: #5c6b86;
    text-align: start;
}

.geo-map-section {
    background: #cdb49d;
    line-height: 0;
}

.geo-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.destinations-section {
    background: #e0e4d9;
    padding: 80px 0 90px;
}

.destinations-heading {
    margin: 0 0 56px;
    text-align: center;
    font-size: var(--heading-size);
    font-weight: 300;
    color: var(--color-primary);
}

.destinations-heading-bold {
    font-weight: 800;
}

.destinations-heading-rest {
    font-weight: 300;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 56px;
    max-width: 1040px;
    margin: 0 auto;
}

.destination-item {
    text-align: center;
}

.destination-time {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.2;
}

.destination-time span {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
}

.destination-name {
    margin: 10px 0 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.7;
}

.deco-water-rays {
    position: absolute;
    left: -80px;
    top: -180px;
    width: min(380px, 42vw);
    pointer-events: none;
}

/* The Plan page */
.plan-overview-section {
    background: #fff;
    padding: 88px 0 40px;
}

.plan-overview-intro {
    max-width: 820px;
    margin-inline-end: auto;
    margin-bottom: 48px;
}

.plan-overview-title {
    margin: 0 0 22px;
    font-size: var(--heading-size);
    line-height: 1.45;
    color: var(--color-primary);
}

.plan-overview-title span {
    display: block;
}

.plan-overview-title-light {
    font-weight: 300;
}

.plan-overview-title-bold {
    font-weight: 800;
}

.plan-overview-copy {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 2.15;
    color: var(--color-muted);
}

.plan-map-wrap {
    margin-bottom: 96px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.plan-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.plan-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 780px;
    margin: 8px auto 64px;
}

.plan-metric {
    display: flex;
    align-items: center;
    gap: 14px;
}

.plan-metric-icon {
    width: 72px;
    height: auto;
    flex-shrink: 0;
}

.plan-metric-text {
    text-align: start;
}

.plan-metric-value {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    font-size: clamp(32px, 3.6vw, 42px);
    font-weight: 300;
    color: var(--color-secondary);
    line-height: 1.05;
    white-space: nowrap;
}

.plan-metric-value span {
    font-size: 0.62em;
    font-weight: 300;
}

.plan-metric-label {
    margin: 4px 0 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-primary);
}

.plan-features {
    text-align: center;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 2.35;
}

.plan-features p {
    margin: 0;
}

.plan-feature-sep {
    color: var(--color-primary);
    margin: 0 22px;
    font-weight: 400;
}

.plan-uses-section {
    background: #f7f7f5;
    padding: 72px 0 88px;
}

.plan-uses-heading {
    margin: 0 0 56px;
    text-align: center;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    color: var(--color-primary);
}

.plan-use-head {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 10px;
}

.plan-use-num {
    width: 85px;
    height: auto;
    flex-shrink: 0;
    margin-inline-end: -34px;
    position: relative;
    z-index: 0;
}

.plan-use-head-text {
    min-width: 0;
    position: relative;
    z-index: 1;
    left: -7px;
}

.plan-use-title {
    margin: 0;
    font-size: clamp(16px, 1.85vw, 22px);
    font-weight: 800;
    color: var(--color-primary);
}

.plan-use-kicker {
    margin: 10px 0 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
}

.plan-use-copy {
    margin: 0 0 36px;
    max-width: 820px;
    font-size: 15px;
    font-weight: 300;
    line-height: 2.15;
    color: var(--color-muted);
}

.plan-use-visual {
    width: 100%;
    min-height: clamp(220px, 32vw, 380px);
    margin: 0 0 48px;
    background: #d8d2c6;
}

.plan-use-stats {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 48px;
}

.plan-use-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 12px;
    border-inline-end: 1px solid rgba(35, 53, 91, 0.18);
}

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

.plan-use-stat img {
    width: 42px;
    height: auto;
    flex-shrink: 0;
}

.plan-use-stat-value {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    white-space: nowrap;
}

.plan-use-stat-unit {
    font-size: 0.62em;
    font-weight: 400;
}

.plan-use-stat-label {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 400;
    color: #7a8496;
}

.plan-use-stats--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-use-block-follow {
    margin-top: 72px;
}

.plan-use-block-follow .plan-use-kicker {
    margin-top: 0;
    font-size: clamp(22px, 2.4vw, 30px);
}

.plan-use-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.plan-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 28px;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.plan-cta-teal {
    background: var(--color-secondary);
}

.plan-cta-navy {
    background: var(--color-primary);
}

.plan-cta:hover,
.plan-cta:focus-visible {
    color: #fff;
    transform: translateY(-1px);
}

.plan-cta-teal:hover,
.plan-cta-teal:focus-visible {
    background: #1ea89d;
}

.plan-cta-navy:hover,
.plan-cta-navy:focus-visible {
    background: #1b2948;
}

.plan-commercial-section {
    background: #edefe8;
    padding: 80px 0 88px;
}

.plan-commercial-head {
    margin-bottom: 40px;
}

.plan-commercial-num {
    width: 110px;
    height: auto;
    flex-shrink: 0;
    margin-inline-end: -28px;
    position: relative;
    z-index: 0;
}

.plan-commercial-title {
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: clamp(18px, 2.1vw, 26px);
    font-weight: 800;
    color: var(--color-primary);
}

.plan-commercial-block {
    margin-bottom: 8px;
}

.plan-commercial-kicker {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
}

.plan-commercial-copy {
    margin: 0 0 32px;
    max-width: 820px;
    font-size: 15px;
    font-weight: 300;
    line-height: 2.15;
    color: var(--color-muted);
}

.plan-use-visual-last {
    margin-bottom: 0;
}

.plan-commercial-follow {
    margin-top: 64px;
}

.plan-commercial-follow .plan-commercial-kicker {
    margin-bottom: 28px;
}

.plan-towers-section {
    background: #e0ecf1;
    padding: 80px 0 88px;
}

.plan-towers-head {
    margin-bottom: 40px;
}

.plan-towers-num {
    width: 110px;
    height: auto;
    flex-shrink: 0;
    margin-inline-end: -28px;
    position: relative;
    z-index: 0;
}

.plan-towers-title {
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: clamp(18px, 2.1vw, 26px);
    font-weight: 800;
    color: var(--color-primary);
}

.plan-use-stats--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex: 1;
    margin-bottom: 0;
}

.plan-towers-bar {
    display: flex;
    align-items: center;
    gap: 28px;
}

.plan-use-actions-stack {
    flex-direction: column;
    align-items: stretch;
    flex-shrink: 0;
    gap: 10px;
}

.plan-use-actions-stack .plan-cta {
    width: 100%;
    min-width: 220px;
    border-radius: 10px;
}

.plan-tower-feature {
    margin-top: 72px;
}

.plan-tower-feature-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.plan-tower-feature-label img {
    width: 42px;
    height: auto;
    flex-shrink: 0;
}

.plan-tower-feature-label p {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--color-primary);
}

.plan-tower-feature-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 8px;
}

.plan-tower-feature-copy {
    flex: 1;
    min-width: 0;
    max-width: none;
}

.plan-tower-feature-copy h4 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
}

.plan-tower-feature-copy p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 2.15;
    color: var(--color-muted);
}

.plan-tower-floors {
    margin: 0;
    flex-shrink: 0;
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
    padding-top: 4px;
}

.plan-tower-floors span {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    line-height: 1;
    margin-inline-end: 8px;
}

/* Investors intro */
.investors-intro-section {
    background: #f5f4f0;
    padding: 96px 0 100px;
}

.investors-intro {
    max-width: 760px;
    margin: 0 auto;
    text-align: start;
}

.investors-intro h2 {
    margin: 0 0 36px;
    font-size: clamp(18px, 1.7vw, 22px);
    font-weight: 800;
    line-height: 1.85;
    color: var(--color-primary);
}

.investors-intro p {
    margin: 0 0 28px;
    font-size: 15px;
    font-weight: 300;
    line-height: 2.15;
    color: var(--color-muted);
}

.investors-intro p:last-child {
    margin-bottom: 0;
}

.investors-sectors-section {
    background: #fff;
    padding: 88px 0 100px;
}

.investors-sectors-heading {
    margin: 0 0 72px;
    text-align: center;
    color: var(--color-primary);
}

.investors-sectors-kicker,
.investors-sectors-title {
    display: block;
}

.investors-sectors-kicker {
    font-size: var(--heading-size);
    font-weight: 300;
    line-height: 1.4;
}

.investors-sectors-title {
    font-size: var(--heading-size);
    font-weight: 800;
    line-height: 1.4;
}

.investors-sectors-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 56px;
}

.investors-sectors-row--three {
    width: 75%;
    margin: 56px auto 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.investors-sector {
    text-align: center;
}

.investors-sector img {
    display: block;
    width: 64px;
    height: auto;
    margin: 0 auto 18px;
    object-fit: contain;
}

.investors-sector p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.6;
}

.investors-advantages-section {
    background: #33afcb;
    padding: 88px 0 100px;
}

.investors-advantages {
    max-width: 760px;
    margin: 0 auto;
}

.investors-advantage {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 40px;
}

.investors-advantage:last-child {
    margin-bottom: 0;
}

.investors-advantage img {
    width: 42px;
    height: auto;
    flex-shrink: 0;
    margin-top: 4px;
}

.investors-advantage h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.5;
}

.investors-advantage p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 2.05;
    color: #fff;
}

@media (max-width: 767.98px) {
    .plan-overview-section {
        padding: 56px 0 28px;
    }

    .plan-overview-intro {
        margin-bottom: 32px;
    }

    .plan-map-wrap {
        margin-bottom: 72px;
        direction: ltr;
    }

    .plan-map-image {
        min-width: 720px;
    }

    .plan-metrics {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        margin-bottom: 48px;
    }

    .plan-metric-icon {
        width: 48px;
    }

    .plan-features {
        font-size: 14px;
        padding-inline: 8px;
    }

    .plan-uses-section {
        padding: 48px 0 64px;
    }

    .plan-uses-heading {
        margin-bottom: 36px;
    }

    .plan-use-stats,
    .plan-use-stats--3,
    .plan-use-stats--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 12px;
        margin-bottom: 36px;
    }

    .plan-use-stat {
        justify-content: flex-start;
        border-inline-end: 0;
        padding: 0;
        border-bottom: 0;
    }

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

    .plan-use-block-follow {
        margin-top: 48px;
    }

    .plan-commercial-section {
        padding: 56px 0 64px;
    }

    .plan-commercial-num {
        width: 88px;
    }

    .plan-commercial-follow {
        margin-top: 48px;
    }

    .plan-towers-section {
        padding: 56px 0 64px;
    }

    .plan-towers-num {
        width: 88px;
    }

    .plan-towers-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .plan-tower-feature {
        margin-top: 48px;
    }

    .plan-tower-feature-row {
        flex-direction: column;
        gap: 16px;
    }

    .plan-use-visual {
        margin-bottom: 32px;
        min-height: 180px;
    }

    .plan-cta {
        width: 100%;
    }

    .investors-intro-section {
        padding: 56px 0 64px;
    }

    .investors-sectors-section {
        padding: 56px 0 64px;
    }

    .investors-sectors-heading {
        margin-bottom: 40px;
    }

    .investors-sectors-row,
    .investors-sectors-row--three {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 36px;
    }

    .investors-sectors-row--three {
        margin-top: 36px;
    }

    .investors-advantages-section {
        padding: 56px 0 64px;
    }

    .investors-advantage {
        gap: 14px;
        margin-bottom: 32px;
    }

    .investors-advantage img {
        width: 36px;
    }

    .contact-page-section {
        padding: 56px 0 64px;
    }

    .contact-page-panel {
        padding: 18px 18px 20px;
    }

    .contact-page-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-top: 36px;
    }

    .about-developer-section {
        padding: 56px 0 64px;
    }

    .about-developer-logo {
        width: 120px;
        margin-bottom: 28px;
    }

    .about-vision-section {
        padding: 56px 0 64px;
    }

    .about-vision-grid {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }

    .vital-section {
        padding: 56px 0 48px;
    }

    .vital-head {
        margin-bottom: 20px;
    }

    .vital-copy {
        padding-inline: 4px;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .deco-water-rays {
        width: min(220px, 48vw);
        left: -70px;
        top: -80px;
        opacity: 0.7;
    }
}
