/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight: #0a1628;
    --midnight-light: #132038;
    --midnight-mid: #1a2d4a;
    --mint: #34d399;
    --mint-light: #6ee7b7;
    --mint-dark: #059669;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f1f5f9;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-300: #94a3b8;
    --gray-400: #64748b;
    --gray-500: #475569;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--midnight);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 1px 0 var(--gray-100);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    transition: color 0.3s;
    line-height: 1.2;
}

.nav.scrolled .nav-logo {
    color: var(--midnight);
}

.nav-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--mint);
    border-radius: 6px;
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--gray-500);
}

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

.nav.scrolled .nav-links a:hover {
    color: var(--midnight);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--mint);
    transition: width 0.3s var(--ease-out);
}

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

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    transition: all 0.3s !important;
}

.nav.scrolled .nav-cta {
    border-color: var(--midnight) !important;
    color: var(--midnight) !important;
}

.nav-cta:hover {
    background: var(--mint) !important;
    border-color: var(--mint) !important;
    color: var(--white) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav.scrolled .nav-toggle span {
    background: var(--midnight);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--midnight);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--white);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.mobile-menu-link:hover {
    opacity: 1;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    background: var(--midnight);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 100vh;
}

.hero-content {
    padding: 8rem 4rem 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 2rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-headline em {
    font-style: italic;
    color: var(--mint-light);
}

.hero-headline .accent {
    color: var(--mint);
}

.hero-desc {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 440px;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 400;
}

.meta-label {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.hero-meta-divider {
    width: 1px;
    height: 40px;
    background: var(--midnight-mid);
}

/* Hero Image */
.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image-frame {
    position: absolute;
    inset: 0;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 8s var(--ease-out);
}

.hero-image:hover .hero-image-frame img {
    transform: scale(1.03);
}

.hero-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--midnight), transparent);
    pointer-events: none;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.scroll-line {
    width: 48px;
    height: 1px;
    background: var(--gray-400);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--mint);
    animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--mint);
    color: var(--midnight);
}

.btn-primary:hover {
    background: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(52, 211, 153, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-full {
    width: 100%;
}

/* ── Section Labels ── */
.label-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--mint);
    margin-right: 0.75rem;
    vertical-align: middle;
}

.label-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header .label-text {
    display: block;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--midnight);
}

.section-title em {
    font-style: italic;
    color: var(--mint-dark);
}

/* ── About ── */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 6rem;
}

.about-label {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 560px;
}

.about-content .section-title {
    margin-bottom: 2.5rem;
    text-align: left;
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-100);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.stat-number {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-300);
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--midnight);
}

.about-image {
    grid-column: 1 / -1;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ── Amenities ── */
.amenities {
    padding: 8rem 0;
    background: var(--off-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.amenity-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
    transition: all 0.4s var(--ease-out);
}

.amenity-card:hover {
    border-color: var(--mint);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.06);
}

.amenity-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--midnight);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    margin-bottom: 1.75rem;
    transition: background 0.3s;
}

.amenity-card:hover .amenity-icon {
    background: var(--mint);
    color: var(--midnight);
}

.amenity-card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 0.75rem;
}

.amenity-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-400);
}

/* ── Gallery ── */
.gallery {
    padding: 8rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.25rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-item--tall {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--tall) {
    grid-column: span 5;
}

/* ── Location ── */
.location {
    padding: 8rem 0;
    background: var(--midnight);
    color: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.location .label-text {
    color: var(--mint);
    display: block;
    margin-bottom: 1.5rem;
}

.location .section-title {
    color: var(--white);
    margin-bottom: 3rem;
    text-align: left;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-detail {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.detail-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.detail-value {
    font-size: 1.0625rem;
    color: var(--white);
    line-height: 1.6;
}

.detail-link {
    font-size: 1.0625rem;
    color: var(--mint);
    transition: color 0.3s;
}

.detail-link:hover {
    color: var(--mint-light);
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    background: var(--midnight-light);
    border: 1px solid var(--midnight-mid);
}

.map-placeholder {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    min-height: 360px;
    justify-content: center;
}

.map-placeholder svg {
    color: var(--mint);
}

.map-placeholder p {
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.6;
}

.map-btn {
    margin-top: 0.5rem;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
}

.map-btn:hover {
    background: var(--mint) !important;
    border-color: var(--mint) !important;
    color: var(--midnight) !important;
}

/* ── Contact ── */
.contact {
    padding: 8rem 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-content .label-text {
    display: block;
    margin-bottom: 1.5rem;
}

.contact-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-body {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--gray-400);
    margin-bottom: 3rem;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-direct-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--midnight);
    transition: color 0.3s;
}

.contact-direct-link:hover {
    color: var(--mint-dark);
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid var(--gray-100);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.04);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--midnight);
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    outline: none;
    transition: all 0.3s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.1);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 3rem;
}

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

.form-success svg {
    color: var(--mint);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--midnight);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--gray-400);
}

/* ── Footer ── */
.footer {
    background: var(--midnight);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-logo-mark {
    width: 28px;
    height: 28px;
    background: var(--mint);
    border-radius: 5px;
    flex-shrink: 0;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: color 0.3s;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.8;
}

.footer-contact a {
    color: var(--mint);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--mint-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--midnight-mid);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-content {
        padding: 7rem 3rem 3rem 4rem;
    }
    
    .hero-scroll {
        left: 4rem;
    }
    
    .about-grid {
        gap: 4rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid,
    .contact-grid {
        gap: 4rem;
    }
    
    .footer-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 7rem 2rem 3rem;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        min-height: 50vh;
    }
    
    .hero-image-frame {
        position: absolute;
        inset: 0;
    }
    
    .hero-scroll {
        left: 2rem;
        bottom: 1.5rem;
    }
    
    .hero-meta {
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item--large,
    .gallery-item--tall,
    .gallery-item:not(.gallery-item--large):not(.gallery-item--tall) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item--large {
        min-height: 300px;
    }
    
    .gallery-item:not(.gallery-item--large) {
        min-height: 220px;
    }
    
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrap {
        padding: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 6rem 1.5rem 2rem;
    }
    
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}
