:root {
    --navy: #061221;
    --navy-light: #0b1a2e;
    --gold: #c9a86c;
    --gold-light: #e4c99a;
    --gold-dark: #a6854d;
    --cream: #f5efe4;
    --white: #ffffff;
    --text-muted: #9fb1c7;
    --text-body: #c8d4e0;
    --transition: 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--navy);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

.container {
    width: min(1280px, 92vw);
    margin: 0 auto;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section__label {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 500;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.2vw, 4.6rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section__title--center {
    text-align: center;
}

.section__title + p,
.section__title--center + .masterplan__layout,
.section__title--center + .investment__grid,
.section__title--center + .gallery__grid,
.section__title--center + .amenities__grid {
    margin-top: 56px;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 30px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn--gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(201, 168, 108, 0.24);
}

.btn--outline,
.btn--outline-light {
    background: transparent;
    border-color: rgba(245, 239, 228, 0.45);
    color: var(--cream);
}

.btn--outline:hover,
.btn--outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 108, 0.08);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 22px 0;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.site-header.is-scrolled {
    background: rgba(6, 18, 33, 0.82);
    backdrop-filter: blur(18px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 168, 108, 0.12);
}

.header__inner {
    width: min(1280px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    color: var(--cream);
}

.logo__img {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(1.05);
}

.site-header.is-scrolled .logo__img {
    height: 38px;
}

.main-nav {
    display: flex;
    gap: 34px;
}

.main-nav a {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cream);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease-out-expo);
}

.main-nav a:hover {
    color: var(--gold);
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--cream);
    transition: 0.3s ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05) translateY(0); }
    100% { transform: scale(1.12) translateY(-1%); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 18, 33, 0.88) 0%,
        rgba(6, 18, 33, 0.45) 50%,
        rgba(6, 18, 33, 0.72) 100%
    );
}

.hero__overlay--light {
    background: linear-gradient(
        135deg,
        rgba(6, 18, 33, 0.25) 0%,
        rgba(6, 18, 33, 0.12) 50%,
        rgba(6, 18, 33, 0.22) 100%
    );
}

.hero__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, transparent 0%, rgba(6, 18, 33, 0.55) 80%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(1280px, 92vw);
    margin: 0 auto;
    padding: 180px 0 140px;
}

.hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 500;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--cream);
    text-transform: uppercase;
    line-height: 1.04;
    letter-spacing: 0.03em;
    max-width: 760px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 460px;
    margin-top: 28px;
    font-weight: 300;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 44px;
}

.hero__bar {
    position: relative;
    z-index: 2;
    width: min(1280px, 92vw);
    margin: auto auto 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 26px 34px;
    background: rgba(11, 26, 46, 0.6);
    border: 1px solid rgba(201, 168, 108, 0.18);
    backdrop-filter: blur(14px);
}

.hero__bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero__bar-item strong {
    display: block;
    color: var(--cream);
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 0.72rem;
}

.hero__bar-icon {
    font-size: 1.3rem;
    color: var(--gold);
}

.hero__scroll {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.6rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}

.hero__scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(0.55); opacity: 1; }
}

.vision {
    background: var(--navy);
}

.vision__grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 80px;
    align-items: center;
}

.vision__text p {
    margin-top: 28px;
    font-size: 1.05rem;
    color: var(--text-body);
    font-weight: 300;
    max-width: 480px;
}

.vision__media {
    position: relative;
}

.vision__media img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.vision__frame {
    position: absolute;
    inset: -18px 18px 18px -18px;
    border: 1px solid rgba(201, 168, 108, 0.35);
    pointer-events: none;
    z-index: -1;
}

.masterplan {
    background: var(--navy-light);
}

.masterplan__layout--simple {
    display: block;
}

.masterplan__figure {
    position: relative;
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.masterplan__figure img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background: var(--navy);
}

.masterplan__figure figcaption {
    padding: 26px 32px;
    background: rgba(6, 18, 33, 0.7);
    border-top: 1px solid rgba(201, 168, 108, 0.15);
    font-size: 0.92rem;
    color: var(--text-body);
    font-style: italic;
}

.residences {
    background: var(--navy);
}

.residences__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.residences__text p {
    margin-top: 26px;
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 460px;
}

.feature-list {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
}

.feature-list li {
    font-size: 0.86rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li span {
    color: var(--gold);
    font-size: 0.7rem;
}

.residences__media {
    position: relative;
}

.residences__media img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.residences__caption {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 12px 28px;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.3);
}

.restaurant {
    background: var(--navy-light);
}

.restaurant__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.restaurant__media img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.restaurant__text p {
    margin-top: 26px;
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 460px;
}

.concierge {
    background: var(--navy);
}

.concierge__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 80px;
    align-items: center;
}

.concierge__text p {
    margin-top: 26px;
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 460px;
}

.concierge__media {
    position: relative;
}

.concierge__media img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.concierge__caption {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 12px 28px;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.3);
}

@media (max-width: 1100px) {
    .concierge__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.marina {
    background: var(--navy);
}

.marina__heading {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 50px;
}

.marina__visual {
    position: relative;
    border: 1px solid rgba(201, 168, 108, 0.18);
    border-radius: 2px;
    overflow: hidden;
}

.marina__visual img {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
    filter: brightness(0.9);
}

.marina__stats {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
    background: rgba(6, 18, 33, 0.78);
    border: 1px solid rgba(201, 168, 108, 0.25);
    padding: 18px 28px;
    min-width: 130px;
    backdrop-filter: blur(10px);
}

.stat__num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.stat__label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
}

.marina__features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px 48px;
    margin-top: 46px;
}

.marina__features li {
    font-size: 0.86rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}

.marina__features li span {
    color: var(--gold);
    font-size: 0.7rem;
}

.amenities {
    background: var(--navy-light);
}

.amenities__intro {
    text-align: center;
    margin-bottom: 56px;
}

.amenities__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.amenity-card {
    background: rgba(6, 18, 33, 0.55);
    border: 1px solid rgba(201, 168, 108, 0.16);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

.amenity-card__image {
    height: 300px;
    overflow: hidden;
}

.amenity-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.amenity-card:hover .amenity-card__image img {
    transform: scale(1.06);
}

.amenity-card__body {
    padding: 34px 38px;
}

.amenity-card__body h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.amenity-card__body ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
}

.amenity-card__body li {
    font-size: 0.82rem;
    color: var(--text-body);
    position: relative;
    padding-left: 16px;
}

.amenity-card__body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.villas {
    background: var(--navy);
}

.villas__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.villa-card {
    background: rgba(11, 26, 46, 0.5);
    border: 1px solid rgba(201, 168, 108, 0.14);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo);
}

.villa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

.villa-card__image {
    height: 220px;
    overflow: hidden;
}

.villa-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.villa-card:hover .villa-card__image img {
    transform: scale(1.06);
}

.villa-card__body {
    padding: 26px 24px 30px;
}

.villa-card__body h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.villa-card__body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.villa-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.villa-card__specs li {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(201, 168, 108, 0.15);
    padding: 6px 12px;
    border-radius: 2px;
}

@media (max-width: 1100px) {
    .villas__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .villas__grid {
        grid-template-columns: 1fr;
    }
}

.dining {
    background: var(--navy-light);
}

.dining__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.dining-card {
    background: rgba(6, 18, 33, 0.55);
    border: 1px solid rgba(201, 168, 108, 0.16);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo);
}

.dining-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

.dining-card__image {
    height: 320px;
    overflow: hidden;
}

.dining-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.dining-card:hover .dining-card__image img {
    transform: scale(1.06);
}

.dining-card__body {
    padding: 34px 38px;
}

.dining-card__body h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.dining-card__body p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
}

@media (max-width: 820px) {
    .dining__grid {
        grid-template-columns: 1fr;
    }
}

.investment {
    background: var(--navy);
}

.investment__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.investment__item {
    text-align: center;
    padding: 46px 28px;
    border: 1px solid rgba(201, 168, 108, 0.16);
    background: rgba(11, 26, 46, 0.35);
    transition: transform 0.45s var(--ease-out-expo), border-color 0.35s ease;
}

.investment__item:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 108, 0.45);
}

.investment__icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 22px;
    line-height: 1;
}

.investment__item h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--cream);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
}

.gallery {
    background: var(--navy-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 18, 33, 0.75), transparent 55%);
    opacity: 0.75;
    transition: opacity 0.4s ease;
}

.gallery__item:hover::after {
    opacity: 0.55;
}

.gallery__item figcaption {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transform: translateY(0);
    transition: transform 0.4s var(--ease-out-expo), color 0.3s ease;
}

.gallery__item:hover figcaption {
    transform: translateY(-4px);
    color: var(--gold);
}

.gallery__item--wide {
    grid-column: span 2;
    grid-row: span 2;
}

.cta {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72);
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 18, 33, 0.78), rgba(6, 18, 33, 0.88));
}

.cta__content {
    position: relative;
    z-index: 2;
    width: min(800px, 90vw);
}

.cta__content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    color: var(--gold);
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 300;
}

.cta__content p {
    margin-top: 22px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.cta__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 44px;
}

.site-footer {
    background: #040d18;
    padding: 70px 0 0;
    border-top: 1px solid rgba(201, 168, 108, 0.15);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer__brand p {
    margin-top: 22px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer__contact h4,
.footer__links h4,
.footer__legal h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
    font-weight: 400;
}

.footer__contact p,
.footer__links a,
.footer__legal a {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.25s ease;
}

.footer__links a:hover,
.footer__legal a:hover,
.footer__contact a:hover {
    color: var(--gold);
}

.footer__social {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.footer__social img {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
    transition: filter 0.25s ease, transform 0.25s ease;
}

.footer__social:hover {
    color: var(--gold);
}

.footer__social:hover img {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.footer__bottom {
    border-top: 1px solid rgba(201, 168, 108, 0.12);
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(6, 18, 33, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 86vh;
    object-fit: contain;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2.8rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox__close:hover {
    transform: rotate(90deg);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.modal.is-open {
    opacity: 1;
    pointer-events: all;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 33, 0.9);
    backdrop-filter: blur(8px);
}

.modal__dialog {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--navy-light);
    border: 1px solid rgba(201, 168, 108, 0.25);
    border-radius: 2px;
    padding: 46px 42px 42px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
    transform: translateY(24px);
    transition: transform 0.45s var(--ease-out-expo);
}

.modal.is-open .modal__dialog {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal__close:hover {
    transform: rotate(90deg);
}

.modal__header {
    margin-bottom: 34px;
}

.modal__header h3 {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    color: var(--gold);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 12px;
}

.modal__header p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.form__group {
    margin-bottom: 22px;
}

.form label {
    display: block;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.form input {
    width: 100%;
    background: rgba(6, 18, 33, 0.65);
    border: 1px solid rgba(201, 168, 108, 0.22);
    color: var(--cream);
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.12);
}

.form input.is-invalid {
    border-color: #d66;
}

.form__error {
    display: none;
    font-size: 0.72rem;
    color: #ff8f8f;
    margin-top: 6px;
}

.form input.is-invalid + .form__error {
    display: block;
}

.form__submit {
    width: 100%;
    margin-top: 10px;
}

.form__success {
    display: none;
    text-align: center;
    padding: 30px 0;
}

.form__success.is-visible {
    display: block;
}

.form__success h4 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 14px;
}

.form__success p {
    font-size: 0.9rem;
    color: var(--text-body);
}

/* Honeypot — hidden from humans, visible to bots */
.form__honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Consent checkbox inside forms */
.form__consent {
    margin-top: 4px;
    margin-bottom: 24px;
}

.form__consent-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.78rem !important;
    font-weight: 300 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: var(--text-body) !important;
    line-height: 1.55;
    margin-bottom: 0 !important;
    cursor: pointer;
}

.form__consent-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px !important;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--gold);
    cursor: pointer;
    background: rgba(6, 18, 33, 0.65);
    border: 1px solid rgba(201, 168, 108, 0.4);
    border-radius: 2px;
    padding: 0;
}

.form__consent-label input[type="checkbox"]:focus {
    outline: 2px solid rgba(201, 168, 108, 0.4);
    outline-offset: 2px;
}

.form__consent-label input[type="checkbox"].is-invalid {
    outline: 2px solid #d66;
    outline-offset: 2px;
}

.form__consent-text {
    color: var(--text-body);
}

.form__consent-text a {
    color: var(--gold);
    border-bottom: 1px solid rgba(201, 168, 108, 0.35);
    padding-bottom: 1px;
    transition: var(--transition);
}

.form__consent-text a:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

.form__consent .form__error {
    margin-top: 8px;
    margin-left: 26px;
}

/* Compliance disclaimer inside modal */
.modal__disclaimer {
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(6, 18, 33, 0.55);
    border-left: 2px solid var(--gold);
    font-size: 0.74rem !important;
    line-height: 1.55;
    color: var(--text-muted) !important;
    font-style: italic;
}

@media (max-width: 640px) {
    .modal {
        padding: 16px;
    }

    .modal__dialog {
        padding: 36px 24px 30px;
    }
}

@media (max-width: 1100px) {
    .vision__grid,
    .residences__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .restaurant__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

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

@media (max-width: 820px) {
    .main-nav {
        position: fixed;
        inset: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        background: rgba(6, 18, 33, 0.96);
        backdrop-filter: blur(18px);
        transform: translateX(100%);
        transition: transform 0.45s var(--ease-out-expo);
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .main-nav a {
        font-size: 0.85rem;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .hero__bar {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        padding: 22px;
    }

    .hero__title {
        font-size: clamp(2.2rem, 10vw, 3.6rem);
    }

    .section {
        padding: 80px 0;
    }

    .amenities__grid,
    .investment__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .gallery__item--wide {
        grid-column: span 2;
        grid-row: span 2;
    }

    .marina__stats {
        right: 16px;
        bottom: 16px;
        gap: 14px;
    }

    .stat {
        padding: 12px 18px;
        min-width: 100px;
    }

    .stat__num {
        font-size: 1.4rem;
    }

    .feature-list,
    .masterplan__list,
    .amenity-card__body ul {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 520px) {
    .hero__bar {
        grid-template-columns: 1fr;
        margin-bottom: 28px;
    }

    .hero__scroll {
        display: none;
    }

    .residences__caption {
        font-size: 0.55rem;
        padding: 10px 18px;
    }

    .cta {
        min-height: 420px;
    }
}

/* ===========================
   Cookie consent banner
   =========================== */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: rgba(6, 18, 33, 0.97);
    border-top: 1px solid rgba(201, 168, 108, 0.35);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.45);
    color: var(--cream);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: cookie-slide-up 0.5s ease-out;
}

.cookie-banner[hidden] {
    display: none;
}

@keyframes cookie-slide-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.cookie-banner__text {
    flex: 1 1 auto;
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0;
    font-weight: 300;
}

.cookie-banner__text a {
    color: var(--gold);
    border-bottom: 1px solid rgba(201, 168, 108, 0.4);
    padding-bottom: 1px;
    transition: var(--transition);
}

.cookie-banner__text a:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

.cookie-banner__actions {
    flex: 0 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-banner__btn {
    padding: 12px 26px !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn--ghost {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.btn--ghost:hover {
    background: rgba(201, 168, 108, 0.1);
    color: var(--gold-light);
    border-color: var(--gold-light);
}

/* Language visibility — default hide RU, show EN (RU removed; site is EN-only) */

@media (max-width: 820px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 20px 22px;
    }

    .cookie-banner__text {
        font-size: 0.82rem;
    }

    .cookie-banner__actions {
        justify-content: space-between;
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1 1 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookie-banner__actions {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-banner__btn {
        width: 100%;
    }
}
