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

:root {
    --midnight: #0B1D3A;
    --midnight-light: #132D54;
    --mint: #5EEAD4;
    --mint-dark: #38BDF8;
    --mint-pale: #E0F7F4;
    --white: #FFFFFF;
    --off-white: #F8FAFB;
    --gray-50: #F1F5F9;
    --gray-100: #E2E8F0;
    --gray-200: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--midnight);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 200;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 16px;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 300;
    color: var(--midnight);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-dark);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 20px;
}

.section-desc,
.stay-body,
.location-body,
.cta-body,
.contact-body {
    font-size: 1.0625rem;
    color: var(--gray-500);
    max-width: 520px;
    line-height: 1.8;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--midnight);
    color: var(--white);
    border: 1px solid var(--midnight);
}
.btn--primary:hover {
    background: var(--midnight-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(11, 29, 58, 0.2);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn--ghost {
    background: transparent;
    color: var(--midnight);
    border: 1px solid var(--gray-200);
}
.btn--ghost:hover {
    border-color: var(--midnight);
    color: var(--midnight);
}

.btn--light {
    background: var(--white);
    color: var(--midnight);
    border: 1px solid var(--white);
}
.btn--light:hover {
    background: var(--mint-pale);
    transform: translateY(-1px);
}

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

.btn--sm {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

.btn--lg {
    padding: 18px 36px;
    font-size: 0.9375rem;
}

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

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: all 0.4s var(--ease-out);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.01em;
    transition: opacity 0.3s;
}
.logo:hover { opacity: 0.8; }
.logo--light { color: var(--white); }
.logo-icon { color: var(--mint); }

.nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--mint);
    transition: width 0.3s var(--ease-out);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    color: var(--white);
    padding: 4px;
}

/* ─── 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: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 29, 58, 0.55) 0%,
        rgba(11, 29, 58, 0.45) 40%,
        rgba(11, 29, 58, 0.65) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding-top: 72px;
    max-width: 720px;
}

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

.hero-title {
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    font-style: italic;
    color: var(--mint);
    font-weight: 300;
}

.hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 40px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ─── Section Shared ─── */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

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

/* ─── Rooms ─── */
.rooms {
    background: var(--off-white);
}

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

.room-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(11, 29, 58, 0.1);
}

.room-card-img {
    aspect-ratio: 3/2;
    overflow: hidden;
}
.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.room-card:hover .room-card-img img {
    transform: scale(1.04);
}

.room-card-body {
    padding: 32px 28px;
}

.room-card-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.room-card-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin-bottom: 24px;
}

.room-amenities li {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    background: var(--gray-50);
    border-radius: 100px;
    color: var(--gray-600);
}

.link-arrow {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--midnight);
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s, padding-left 0.3s;
}
.link-arrow:hover {
    color: var(--mint-dark);
    padding-left: 4px;
}

/* ─── Stay ─── */
.stay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stay-text .section-desc {
    margin-bottom: 48px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-100);
    border-radius: 50%;
    color: var(--midnight);
}

.feature-title {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--midnight);
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.stay-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.stay-img-main {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.stay-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stay-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stay-img-row img {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 3/2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Location ─── */
.location {
    background: var(--off-white);
}

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

.location-text .section-desc {
    margin-bottom: 48px;
}

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

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

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

.location-value {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    color: var(--midnight);
    line-height: 1.5;
}
.location-value:hover { color: var(--mint-dark); }

.location-map {
    border-radius: 6px;
    overflow: hidden;
    min-height: 400px;
    background: var(--gray-100);
}

/* ─── CTA ─── */
.cta {
    background: var(--midnight);
    padding: 120px 0;
}

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

.cta .section-eyebrow {
    color: var(--mint);
}

.cta-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-body {
    color: rgba(255,255,255,0.6);
    margin: 0 auto 40px;
    max-width: 460px;
}

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

/* ─── Contact ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-desc {
    margin-bottom: 48px;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--midnight);
    transition: color 0.3s;
}
.contact-method:hover { color: var(--mint-dark); }
.contact-method span {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--off-white);
    border-radius: 8px;
    padding: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-100);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--mint-dark);
    box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.12);
}

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

.form-note {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: 16px;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success svg {
    color: var(--mint-dark);
    margin-bottom: 16px;
}
.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.form-success p {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

/* ─── Footer ─── */
.footer {
    background: var(--midnight);
    color: rgba(255,255,255,0.5);
    padding: 72px 0 40px;
}

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

.footer-brand .logo {
    justify-content: center;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
}

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-nav a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}
.footer-nav a:hover { color: var(--mint); }

.footer-contact {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-contact a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}
.footer-contact a:hover { color: var(--mint); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}
.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

/* ─── Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    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; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .stay-grid { gap: 48px; }
    .contact-grid { gap: 48px; }
    .rooms-grid { gap: 24px; }
}

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

    .nav-toggle { display: flex; align-items: center; justify-content: center; }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--midnight);
        padding: 100px 32px 40px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        z-index: 99;
    }
    .nav.open { transform: translateX(0); }
    .nav ul {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    .nav a {
        font-size: 1rem;
        color: rgba(255,255,255,0.7);
    }
    .nav a:hover { color: var(--white); }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 98;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }
    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .hero-title { font-size: clamp(2.25rem, 10vw, 3.5rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .rooms-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    .stay-grid { grid-template-columns: 1fr; }
    .stay-images { order: -1; }
    .stay-img-main { aspect-ratio: 16/10; }

    .location-content { grid-template-columns: 1fr; }
    .location-map { min-height: 280px; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px; }

    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }

    .footer-inner { gap: 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-content { padding-top: 60px; }
    .section-header { margin-bottom: 48px; }
    .room-card-body { padding: 24px 20px; }
}
