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

:root {
    --midnight: #0A1628;
    --midnight-light: #132240;
    --midnight-mid: #1A2D4A;
    --mint: #1DBF9D;
    --mint-light: #2DD4AF;
    --mint-dark: #159B80;
    --white: #FFFFFF;
    --off-white: #F7F9FC;
    --gray-50: #F0F4F8;
    --gray-100: #E2E8F0;
    --gray-200: #CBD5E1;
    --gray-300: #94A3B8;
    --gray-400: #64748B;
    --gray-500: #475569;
    --gray-600: #334155;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: '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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--midnight);
    background: var(--white);
    line-height: 1.7;
    font-size: 15px;
    letter-spacing: 0.01em;
}

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

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

ul {
    list-style: none;
}

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

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(29, 191, 157, 0.1);
    transition: background 0.4s var(--ease-out);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-logo-icon {
    color: var(--mint);
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-200);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.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 {
    color: var(--white);
}

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

.nav-cta {
    color: var(--mint) !important;
    border: 1px solid var(--mint);
    padding: 8px 20px;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s !important;
}

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

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

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

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--midnight);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/10047588/pexels-photo-10047588.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.72) 0%,
        rgba(10, 22, 40, 0.82) 50%,
        rgba(10, 22, 40, 0.90) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
    padding-top: 64px;
}

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

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

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

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-200);
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gray-300);
    animation: float 2.5s ease-in-out infinite;
    z-index: 2;
}

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

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1.5px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ── SECTIONS ── */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--gray-50);
}

.section-dark {
    background: var(--midnight);
    color: var(--white);
}

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

.section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 16px;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    color: var(--midnight);
}

.section-dark .section-title {
    color: var(--white);
}

.section-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-500);
}

.section-dark .section-desc {
    color: var(--gray-300);
}

/* ── ROOM CARDS ── */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.room-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 4px;
    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(10, 22, 40, 0.1);
}

.room-card-img {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.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: 28px 24px;
}

.room-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--midnight);
}

.room-card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ── SPLIT LAYOUT ── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-img {
    border-radius: 4px;
    overflow: hidden;
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 7/5;
}

.split-content .section-eyebrow {
    margin-bottom: 16px;
}

.split-content .section-title {
    margin-bottom: 20px;
}

.split-content .section-desc {
    margin-bottom: 32px;
}

/* ── AMENITY LIST ── */
.amenity-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin-bottom: 36px;
}

.amenity-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
}

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

/* ── LOCATION GRID ── */
.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.location-card {
    background: var(--midnight-light);
    border: 1px solid var(--midnight-mid);
    border-radius: 4px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.3s;
}

.location-card:hover {
    border-color: var(--mint);
}

.location-icon {
    color: var(--mint);
    margin: 0 auto 16px;
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
}

.location-card p {
    font-size: 13px;
    color: var(--gray-300);
    line-height: 1.7;
}

.location-card a {
    color: var(--gray-300);
    transition: color 0.3s;
    word-break: break-word;
}

.location-card a:hover {
    color: var(--mint);
}

/* ── CONTACT FORM ── */
.split-form {
    background: var(--midnight-light);
    border: 1px solid var(--midnight-mid);
    border-radius: 4px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-300);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    background: var(--midnight);
    border: 1px solid var(--midnight-mid);
    border-radius: 2px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.3s;
    resize: vertical;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--mint);
}

.form-success {
    display: none;
    text-align: center;
    font-size: 14px;
    color: var(--mint);
    padding: 16px;
    border: 1px solid var(--mint);
    border-radius: 2px;
    background: rgba(29, 191, 157, 0.06);
}

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

/* ── CONTACT INFO LINKS ── */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--midnight-mid);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-300);
    transition: color 0.3s;
}

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

.contact-link svg {
    color: var(--mint);
    flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
    background: var(--midnight);
    border-top: 1px solid var(--midnight-mid);
    padding: 48px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    color: var(--mint);
}

.footer-brand p {
    font-size: 13px;
    color: var(--gray-400);
    letter-spacing: 0.04em;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 12px;
    color: var(--gray-400);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.footer-copy {
    font-size: 12px;
    color: var(--gray-500);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .split {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--midnight);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        z-index: 95;
        border-left: 1px solid var(--midnight-mid);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 101;
    }
    
    .hero-headline {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }
    
    .hero-sub {
        font-size: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 260px;
    }
    
    .section {
        padding: 72px 0;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .split-img {
        order: -1;
    }
    
    .amenity-list {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .split-form {
        padding: 28px 24px;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    
    .nav-inner {
        padding: 0 18px;
    }
    
    .hero-content {
        padding-top: 48px;
    }
}
