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

:root {
    --navy-deep: #0a0e1a;
    --navy: #0f1629;
    --navy-light: #1a2240;
    --navy-lighter: #242d4a;
    --gold: #C9A84C;
    --gold-light: #D4B965;
    --gold-dark: #B8943F;
    --gold-pale: rgba(201, 168, 76, 0.1);
    --white: #ffffff;
    --off-white: #f0ece4;
    --gray-100: #e8e4dc;
    --gray-200: #c4bfb4;
    --gray-300: #8a8580;
    --gray-400: #5a5550;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--navy-deep);
    color: var(--gray-100);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-200);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-deep);
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.logo--light .logo__text {
    color: var(--white);
}

.logo__text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.logo__accent {
    color: var(--gold);
}

.logo__icon {
    display: flex;
    align-items: center;
}

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

.nav__link {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-200);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

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

.nav__link::after {
    width: 100%;
}

.nav__link--gold {
    color: var(--gold);
    font-weight: 500;
}

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

.nav__toggle,
.nav__close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
}

.nav__close {
    position: absolute;
    top: 20px;
    right: 24px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 14, 26, 0.6) 0%,
        rgba(10, 14, 26, 0.4) 50%,
        rgba(10, 14, 26, 0.9) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-200);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-200);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* About */
.about {
    padding: 120px 0;
    background: var(--navy);
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--navy);
}

.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__content {
    padding: 20px 0;
}

.about__text {
    color: var(--gray-200);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--navy-lighter);
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat__label {
    font-size: 0.8rem;
    color: var(--gray-300);
    letter-spacing: 0.05em;
}

/* Accommodations */
.accommodations {
    padding: 120px 0;
    background: var(--navy-deep);
}

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

.accommodation-card {
    background: var(--navy);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--navy-lighter);
    transition: all var(--transition);
}

.accommodation-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.accommodation-card__img {
    overflow: hidden;
    height: 240px;
}

.accommodation-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.accommodation-card:hover .accommodation-card__img img {
    transform: scale(1.05);
}

.accommodation-card__body {
    padding: 28px;
}

.accommodation-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.accommodation-card__desc {
    font-size: 0.9rem;
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 20px;
}

.accommodation-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accommodation-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--gray-200);
}

/* Amenities */
.amenities {
    padding: 120px 0;
    background: var(--navy);
}

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

.amenity {
    padding: 36px;
    background: var(--navy-deep);
    border-radius: 8px;
    border: 1px solid var(--navy-lighter);
    transition: all var(--transition);
}

.amenity:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.amenity__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    border-radius: 12px;
    margin-bottom: 20px;
}

.amenity__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.amenity__desc {
    font-size: 0.9rem;
    color: var(--gray-200);
    line-height: 1.7;
}

/* Gallery */
.gallery {
    padding: 120px 0;
    background: var(--navy-deep);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
}

.gallery__item {
    border-radius: 8px;
    overflow: hidden;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

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

.gallery__item--wide {
    grid-column: span 6;
}

.gallery__item:nth-child(2) {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery__item:nth-child(4) {
    grid-column: span 3;
}

/* CTA */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

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

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.9) 0%, rgba(15, 22, 41, 0.85) 100%);
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__eyebrow {
    margin-bottom: 20px;
}

.cta__title {
    margin-bottom: 20px;
}

.cta__text {
    font-size: 1.1rem;
    color: var(--gray-200);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--navy);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__text {
    color: var(--gray-200);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-detail__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 4px;
}

.contact-detail__value {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-100);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--gray-100);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-detail a:hover {
    color: var(--gold);
}

/* Form */
.contact__form-wrapper {
    background: var(--navy-deep);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--navy-lighter);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--navy);
    border: 1px solid var(--navy-lighter);
    border-radius: 6px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

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

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gold-pale);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 6px;
    margin-top: 16px;
    color: var(--gold);
    font-size: 0.9rem;
}

.form-success.show {
    display: flex;
}

/* Footer */
.footer {
    padding: 80px 0 0;
    background: var(--navy-deep);
    border-top: 1px solid var(--navy-lighter);
}

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

.footer__tagline {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.7;
}

.footer__contact a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer__bottom {
    padding: 24px 0;
    border-top: 1px solid var(--navy-lighter);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Mobile Navigation */
.nav__toggle {
    display: block;
}

.nav__close {
    display: block;
}

.nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1000;
    border-left: 1px solid var(--navy-lighter);
}

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

.nav__link {
    font-size: 1.1rem;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.nav-overlay.show {
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .about__grid {
        gap: 60px;
    }

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

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

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

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

    .gallery__item:nth-child(2) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery__item:nth-child(4) {
        grid-column: span 1;
    }

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

    .footer__brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 16px 0;
    }

    .hero__content {
        padding: 100px 24px 60px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__img-secondary {
        right: 0;
        bottom: -20px;
    }

    .about__stats {
        flex-wrap: wrap;
        gap: 24px;
    }

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

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

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .gallery__item {
        height: 240px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form-wrapper {
        padding: 28px;
    }

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

    .footer__brand {
        grid-column: span 1;
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .about {
        padding: 80px 0;
    }

    .about__img-secondary {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 16px;
    }

    .about__images {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
