/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --midnight-950: #060F1F;
    --midnight-900: #0A1628;
    --midnight-800: #0A1F44;
    --midnight-700: #112D5E;
    --midnight-600: #1A3F7A;
    --midnight-500: #245196;
    --mint-400: #7ED4C1;
    --mint-300: #A8E6D8;
    --mint-200: #C5F0E6;
    --mint-100: #E2F7F1;
    --mint-50:  #F0FAF7;
    --sand-50:  #FAFAF8;
    --sand-100: #F3F1ED;
    --sand-200: #E8E4DD;
    --sand-300: #D4CFC6;
    --sand-400: #B8B0A4;
    --sand-500: #8A8178;
    --sand-600: #6B635B;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(10,22,40,0.06), 0 1px 2px rgba(10,22,40,0.04);
    --shadow-md: 0 4px 16px rgba(10,22,40,0.08), 0 2px 6px rgba(10,22,40,0.05);
    --shadow-lg: 0 12px 40px rgba(10,22,40,0.12), 0 4px 12px rgba(10,22,40,0.07);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: var(--midnight-800);
    background-color: var(--sand-50);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul, dl {
    list-style: none;
}

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

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--midnight-800);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-size: 0.875rem;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 12px;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.125rem;
    color: var(--midnight-800);
    transition: color var(--transition);
}

.logo-mark {
    color: var(--mint-400);
    flex-shrink: 0;
}

.logo-text {
    letter-spacing: -0.01em;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--midnight-700);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.main-nav a:hover {
    color: var(--midnight-800);
    background: var(--sand-100);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    border: 1.5px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-mint {
    background: var(--mint-400);
    color: var(--midnight-950);
    border-color: var(--mint-400);
}
.btn-mint:hover {
    background: var(--mint-300);
    border-color: var(--mint-300);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(126,212,193,0.4);
}

.btn-outline-dark {
    background: transparent;
    color: var(--midnight-800);
    border-color: var(--midnight-800);
}
.btn-outline-dark:hover {
    background: var(--midnight-800);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius-xl);
}

.btn-full {
    width: 100%;
}

/* ===== NAV TOGGLE ===== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--midnight-800);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger {
    position: relative;
    margin: 0 auto;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(135deg, var(--sand-50) 0%, var(--mint-50) 50%, var(--sand-100) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 80px;
}

.hero-content {
    padding-right: 16px;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint-400);
    margin-bottom: 16px;
}

.hero-headline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--midnight-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--sand-600);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--midnight-700);
}

.hero-features svg {
    color: var(--mint-400);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.hero-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-top {
    aspect-ratio: 4/5;
}

.hero-img-bottom {
    aspect-ratio: 16/10;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-badge {
    position: absolute;
    bottom: -12px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--midnight-800);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero-badge svg {
    color: var(--mint-400);
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint-400);
    margin-bottom: 12px;
}

.section-heading {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--midnight-900);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--sand-600);
    max-width: 520px;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--sand-600);
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--sand-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--midnight-800);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--sand-500);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-300);
    flex-shrink: 0;
}

/* ===== STAY ===== */
.stay {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--sand-50) 0%, var(--mint-50) 100%);
}

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

.stay-header .section-desc {
    margin: 0 auto;
}

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

.stay-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border: 1px solid rgba(10, 22, 40, 0.06);
    transition: all var(--transition);
}

.stay-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.stay-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-100);
    border-radius: var(--radius-md);
    color: var(--midnight-700);
    margin-bottom: 24px;
    transition: background var(--transition);
}

.stay-card:hover .stay-card-icon {
    background: var(--mint-200);
}

.stay-card-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.375rem;
    color: var(--midnight-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.stay-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--sand-600);
}

/* ===== LOCATION ===== */
.location {
    padding: 120px 0;
    background: var(--white);
}

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

.location-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--sand-600);
    margin-bottom: 32px;
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.location-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--midnight-700);
}

.location-list svg {
    color: var(--mint-400);
    flex-shrink: 0;
}

.location-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CTA ===== */
.cta {
    padding: 120px 0;
    background: var(--midnight-800);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(126,212,193,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(126,212,193,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-heading {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
}

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

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--sand-50) 0%, var(--mint-50) 100%);
}

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

.contact-info p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--sand-600);
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-item-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sand-500);
}

.contact-item-label svg {
    color: var(--mint-400);
}

.contact-item dd {
    font-size: 1.0625rem;
    color: var(--midnight-800);
    line-height: 1.6;
}

.contact-item a {
    color: var(--midnight-700);
    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--midnight-950);
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.contact-form-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--midnight-900);
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--midnight-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    color: var(--midnight-800);
    background: var(--sand-50);
    border: 1.5px solid var(--sand-200);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--mint-400);
    box-shadow: 0 0 0 3px rgba(126,212,193,0.2);
    background: var(--white);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--mint-50);
    border: 1px solid var(--mint-200);
    border-radius: var(--radius-sm);
    color: var(--midnight-700);
    font-size: 0.9375rem;
    font-weight: 500;
    margin-top: 16px;
}

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

.form-success svg {
    color: var(--mint-400);
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--midnight-950);
    padding: 64px 0 40px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

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

.logo-light .logo-mark {
    color: var(--mint-300);
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
}

.footer-links nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}

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

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE NAV OVERLAY ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100dvh;
        height: 100vh;
        background: rgba(250, 250, 248, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 999;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .main-nav a {
        font-size: 1.25rem;
        padding: 12px 24px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        order: 2;
    }

    .hero-visual {
        order: 1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        order: -1;
    }

    .location-visual {
        order: -1;
    }
}

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

    .hero {
        padding-top: 72px;
    }

    .hero-grid {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .hero-img-top {
        aspect-ratio: 3/4;
    }

    .hero-img-bottom {
        aspect-ratio: 16/9;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .stay-card {
        padding: 32px 28px;
    }

    .about,
    .stay,
    .location,
    .cta,
    .contact {
        padding: 80px 0;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .contact-form-wrap {
        padding: 28px 24px;
    }

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

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}
