/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a1a2e;
    background: #FAFAF8;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
.skip-link {
    position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
    background: #5EEAD4; color: #060D1F; padding: 8px 16px; z-index: 9999;
    font-weight: 600; border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }

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

/* ── Typography ── */
.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #5EEAD4;
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: #0A1628;
    margin-bottom: 24px;
}
.section-desc {
    font-size: 1.1rem;
    color: #4A5568;
    max-width: 600px;
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem;
    letter-spacing: 0.02em; border-radius: 60px; padding: 14px 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-mint {
    background: #5EEAD4; color: #060D1F;
    box-shadow: 0 4px 20px rgba(94,234,212,0.3);
}
.btn-mint:hover {
    background: #4FD3C5; transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(94,234,212,0.4);
}
.btn-outline-light {
    border: 1.5px solid rgba(255,255,255,0.4); color: #fff;
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
    border-color: #5EEAD4; color: #5EEAD4; transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── Header ── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.scrolled {
    background: rgba(6, 13, 31, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
    display: flex; align-items: center; gap: 10px;
    color: #fff; font-weight: 600; font-size: 1.1rem;
}
.logo-diamond { color: #5EEAD4; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 500; letter-spacing: 0.02em; }
.nav-desktop { display: none; align-items: center; gap: 32px; }
.nav-desktop a {
    color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500;
    transition: color 0.3s; position: relative;
}
.nav-desktop a:not(.btn)::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
    background: #5EEAD4; transition: width 0.3s;
}
.nav-desktop a:not(.btn):hover { color: #fff; }
.nav-desktop a:not(.btn):hover::after { width: 100%; }
.menu-toggle {
    display: flex; flex-direction: column; gap: 5px; padding: 8px;
    background: none; border: none; cursor: pointer;
}
.menu-toggle .bar {
    width: 24px; height: 2px; background: #fff; border-radius: 2px;
    transition: all 0.3s;
}
.menu-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 13, 31, 0.98); backdrop-filter: blur(20px);
    z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: #fff; font-family: 'Playfair Display', serif;
    font-size: 1.75rem; font-weight: 500; transition: color 0.3s;
}
.mobile-menu a:hover { color: #5EEAD4; }

/* ── Hero ── */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #060D1F 0%, #0A1628 30%, #0F1F3A 60%, #162A4A 100%);
}
.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(94,234,212,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(94,234,212,0.08) 0%, transparent 50%);
}
.hero-pattern {
    position: absolute; inset: 0; opacity: 0.6; pointer-events: none;
}
.hero-content {
    position: relative; text-align: center; padding: 120px 24px 80px;
    max-width: 900px;
}
.hero-eyebrow {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: #5EEAD4; margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500; line-height: 1.1; color: #fff;
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-headline em {
    font-style: italic; color: #5EEAD4;
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.7); line-height: 1.7;
    max-width: 580px; margin: 0 auto 40px;
    opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
    display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
    opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.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.7rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(94,234,212,0.6), transparent);
    animation: scrollPulse 2s infinite;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Intro Strip ── */
.intro-strip {
    background: #0A1628; padding: 48px 0;
    border-top: 1px solid rgba(94,234,212,0.1);
}
.intro-grid {
    display: flex; flex-wrap: wrap; gap: 40px; justify-content: center;
}
.intro-item {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500;
}
.intro-icon { color: #5EEAD4; flex-shrink: 0; }

/* ── Rooms ── */
.rooms { padding: 120px 0; }
.rooms .section-header { text-align: center; margin-bottom: 64px; }
.rooms .section-desc { margin: 0 auto; }
.rooms-grid {
    display: grid; grid-template-columns: 1fr; gap: 32px;
}
.room-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 4px 40px rgba(10,22,40,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(10,22,40,0.06);
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10,22,40,0.12);
}
.room-img { overflow: hidden; aspect-ratio: 3/2; }
.room-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-card:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 32px; }
.room-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 500; color: #0A1628; margin-bottom: 12px;
}
.room-desc {
    font-size: 0.95rem; color: #4A5568; line-height: 1.7; margin-bottom: 20px;
}
.room-features {
    display: flex; flex-wrap: wrap; gap: 8px 16px;
}
.room-features li {
    font-size: 0.8rem; font-weight: 500; color: #0A1628;
    background: #F0FDFA; color: #0F766E;
    padding: 6px 14px; border-radius: 100px;
}

/* ── Experience ── */
.experience {
    padding: 120px 0;
    background: linear-gradient(180deg, #FAFAF8 0%, #F0FDFA 100%);
}
.experience-layout {
    display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center;
}
.experience-body {
    font-size: 1.05rem; color: #4A5568; line-height: 1.8; margin-bottom: 20px;
}
.experience-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px;
}
.exp-feature {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.95rem; font-weight: 500; color: #0A1628;
}
.exp-icon { color: #5EEAD4; flex-shrink: 0; }
.experience-images { position: relative; }
.exp-img-main {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(10,22,40,0.15);
}
.exp-img-main img { width: 100%; height: 100%; object-fit: cover; }
.exp-img-accent {
    position: absolute; bottom: -40px; right: -20px;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(10,22,40,0.2);
    border: 4px solid #FAFAF8;
}
.exp-img-accent img { width: 100%; height: 100%; object-fit: cover; }

/* ── Location ── */
.location { padding: 120px 0; }
.location-layout {
    display: grid; grid-template-columns: 1fr; gap: 48px; align-items: stretch;
}
.location-map {
    position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(10,22,40,0.1);
    min-height: 400px;
}
.location-map img { width: 100%; height: 100%; object-fit: cover; }
.map-overlay {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    display: flex; align-items: center; gap: 12px;
    background: rgba(6,13,31,0.9); backdrop-filter: blur(12px);
    padding: 16px 20px; border-radius: 12px;
    color: #fff; font-size: 0.9rem; font-weight: 500;
}
.location-text { padding: 8px 0; }
.location-body {
    font-size: 1.05rem; color: #4A5568; line-height: 1.8; margin-bottom: 36px;
}
.location-details { display: flex; flex-direction: column; gap: 24px; }
.loc-detail {
    display: flex; align-items: flex-start; gap: 16px;
}
.loc-icon { color: #5EEAD4; flex-shrink: 0; margin-top: 2px; }
.loc-detail strong {
    display: block; font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; color: #0A1628;
    margin-bottom: 4px;
}
.loc-detail span, .loc-detail a {
    font-size: 1rem; color: #4A5568; line-height: 1.5;
}
.loc-detail a:hover { color: #5EEAD4; }

/* ── CTA ── */
.cta-section {
    position: relative; padding: 120px 0; overflow: hidden;
    background: linear-gradient(135deg, #060D1F 0%, #0F1F3A 50%, #162A4A 100%);
}
.cta-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(94,234,212,0.1) 0%, transparent 70%);
}
.cta-content {
    position: relative; text-align: center;
}
.cta-eyebrow { color: #5EEAD4; }
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 500; line-height: 1.15; color: #fff; margin-bottom: 20px;
}
.cta-desc {
    font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 500px;
    margin: 0 auto 40px; line-height: 1.7;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ── Contact ── */
.contact { padding: 120px 0; background: #F8FAFA; }
.contact-layout {
    display: grid; grid-template-columns: 1fr; gap: 64px; align-items: start;
}
.contact-body {
    font-size: 1.05rem; color: #4A5568; line-height: 1.8; margin-bottom: 40px;
}
.contact-methods { display: flex; flex-direction: column; gap: 28px; }
.contact-method {
    display: flex; align-items: center; gap: 16px;
}
.cm-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: #F0FDFA; display: flex; align-items: center; justify-content: center;
    color: #0F766E; flex-shrink: 0;
}
.cm-label {
    display: block; font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; color: #94A3B8; margin-bottom: 2px;
}
.contact-method a {
    font-size: 1rem; color: #0A1628; font-weight: 500;
    transition: color 0.3s;
}
.contact-method a:hover { color: #5EEAD4; }
.contact-method span { font-size: 1rem; color: #4A5568; }

/* ── Contact Form ── */
.contact-form-wrap {
    background: #fff; border-radius: 20px; padding: 40px;
    box-shadow: 0 8px 40px rgba(10,22,40,0.06);
    border: 1px solid rgba(10,22,40,0.06);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: #0A1628;
}
.form-group input, .form-group textarea {
    font-family: 'Inter', sans-serif; font-size: 1rem;
    padding: 14px 16px; border: 1.5px solid #E2E8F0; border-radius: 10px;
    background: #F8FAFC; color: #1a1a2e;
    transition: all 0.3s; outline: none; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: #5EEAD4; background: #fff;
    box-shadow: 0 0 0 3px rgba(94,234,212,0.15);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: #94A3B8;
}
.form-success {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 20px; border-radius: 10px;
    background: #F0FDFA; color: #0F766E; font-weight: 500;
    margin-top: 8px;
}

/* ── Footer ── */
.footer {
    background: #060D1F; color: rgba(255,255,255,0.6); padding: 80px 0 0;
}
.footer-inner {
    display: grid; grid-template-columns: 1fr; gap: 40px;
    padding-bottom: 60px;
}
.logo-light { color: #fff; }
.footer-tagline {
    margin-top: 16px; font-size: 0.9rem; line-height: 1.7; max-width: 280px;
}
.footer-links {
    display: flex; flex-wrap: wrap; gap: 24px;
}
.footer-links a {
    font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.3s;
}
.footer-links a:hover { color: #5EEAD4; }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a:hover { color: #5EEAD4; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── Scroll Animations ── */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.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 (min-width: 640px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-features { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    .intro-grid { gap: 64px; }
    .location-layout { grid-template-columns: 1.2fr 1fr; }
    .contact-layout { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
    .menu-toggle { display: none; }
    .rooms-grid { grid-template-columns: repeat(3, 1fr); }
    .experience-layout { grid-template-columns: 1fr 1fr; }
    .exp-img-accent { width: 55%; }
}
@media (max-width: 767px) {
    .exp-img-accent { position: relative; bottom: auto; right: auto; margin-top: 16px; width: 100%; }
    .hero-actions { flex-direction: column; align-items: center; }
    .cta-actions { flex-direction: column; align-items: center; }
}
