/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    background: #fafaf8;
    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; }
address { font-style: normal; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.15; color: #0f172a; }
.section-header__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0d9488;
    margin-bottom: 16px;
}
.section-header__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 24px;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn--primary {
    background: #0d9488;
    color: #fff;
}
.btn--primary:hover { background: #0f766e; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,148,136,0.25); }
.btn--ghost {
    background: transparent;
    color: #0f172a;
    border: 1.5px solid #0f172a;
}
.btn--ghost:hover { background: #0f172a; color: #fff; }
.btn--outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s ease;
}
.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s;
}
.nav__logo-icon { color: #5eead4; }
.nav.scrolled .nav__logo { color: #0f172a; }
.nav.scrolled .nav__logo-icon { color: #0d9488; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #5eead4;
    transition: width 0.3s;
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }
.nav__link--cta {
    padding: 10px 24px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    transition: all 0.3s;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.nav.scrolled .nav__link { color: #475569; }
.nav.scrolled .nav__link:hover { color: #0f172a; }
.nav.scrolled .nav__link--cta { border-color: #0d9488; color: #0d9488; }
.nav.scrolled .nav__link--cta:hover { background: #0d9488; color: #fff; }

/* Mobile Toggle */
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle-bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s;
}
.nav.scrolled .nav__toggle-bar { background: #0f172a; }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15,23,42,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu__inner { text-align: center; display: flex; flex-direction: column; gap: 32px; }
.mobile-menu__link {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}
.mobile-menu__link:hover { color: #5eead4; }
.mobile-menu__link--cta {
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5eead4;
    border: 1.5px solid #5eead4;
    padding: 14px 32px;
    border-radius: 4px;
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}
.hero__grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 100vh;
}
.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 64px 80px;
    max-width: 640px;
}
.hero__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5eead4;
    margin-bottom: 28px;
}
.hero__headline {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 28px;
}
.hero__headline--accent {
    color: #94a3b8;
    font-style: italic;
    font-weight: 400;
}
.hero__desc {
    font-size: 17px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 480px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__trust { display: flex; gap: 32px; flex-wrap: wrap; }
.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    letter-spacing: 0.04em;
}
.hero__trust-item svg { color: #5eead4; }

.hero__image { position: relative; overflow: hidden; }
.hero__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}
.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__image-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0f172a 0%, transparent 40%);
    pointer-events: none;
}

.hero__scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 64px 32px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #475569;
}
.hero__scroll svg { color: #5eead4; animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ─── Rooms ─── */
.rooms {
    padding: 120px 0;
    background: #fafaf8;
}
.rooms .section-header { margin-bottom: 64px; }
.rooms__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.room-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.room-card__image { overflow: hidden; aspect-ratio: 7/5; }
.room-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-card__image img { transform: scale(1.05); }
.room-card__body { padding: 28px; }
.room-card__title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.room-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
}
.room-card__amenities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.room-card__amenities li {
    font-size: 13px;
    color: #475569;
    padding-left: 16px;
    position: relative;
}
.room-card__amenities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background: #0d9488;
    border-radius: 50%;
}

/* ─── Experience ─── */
.experience {
    padding: 120px 0;
    background: #0f172a;
    color: #fff;
}
.experience .section-header__title { color: #fff; }
.experience__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.experience__text {
    font-size: 17px;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 48px;
}
.exp-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}
.exp-feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(94,234,212,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5eead4;
}
.exp-feature__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}
.exp-feature__desc { font-size: 14px; color: #64748b; line-height: 1.6; }

.exp-img-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr;
    gap: 16px;
    height: 100%;
}
.exp-img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.exp-img-grid img:first-child { grid-row: 1; }
.exp-img-grid img:nth-child(2) { grid-row: 2; }
.exp-img-grid img:last-child { grid-row: 2; }

/* ─── Location ─── */
.location {
    padding: 120px 0;
    background: #fafaf8;
}
.location__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.location__address {
    font-size: 18px;
    line-height: 1.8;
    color: #0f172a;
    margin-bottom: 32px;
}
.location__details { display: flex; flex-direction: column; gap: 16px; }
.location__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #475569;
    transition: color 0.3s;
}
.location__detail:hover { color: #0d9488; }
.location__detail svg { color: #0d9488; flex-shrink: 0; }

.location__map { }
.location__map-placeholder {
    background: #e2e8f0;
    border-radius: 8px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #64748b;
}
.location__map-placeholder svg { color: #0d9488; }
.location__map-placeholder p { font-size: 15px; font-weight: 500; }

/* ─── Contact ─── */
.contact {
    padding: 120px 0;
    background: #f1f5f9;
}
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact__text {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    margin-top: 20px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__group { margin-bottom: 20px; }
.form__label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 8px;
}
.form__input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form__input:focus { border-color: #0d9488; box-shadow: 0 0 0 3px rgba(13,148,136,0.1); }
.form__input::placeholder { color: #94a3b8; }
.form__select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form__textarea { resize: vertical; min-height: 120px; }
.form__note {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 16px;
}
.form__note a { color: #0d9488; text-decoration: underline; }
.form__success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 4px;
    color: #166534;
    font-size: 14px;
}
.form__success svg { color: #22c55e; flex-shrink: 0; }

/* ─── Footer ─── */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
}
.footer__logo svg { color: #5eead4; }
.footer__tagline { font-size: 14px; color: #64748b; line-height: 1.7; max-width: 280px; }
.footer__heading {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5eead4;
    margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14px; color: #64748b; transition: color 0.3s; }
.footer__links a:hover { color: #fff; }
.footer__contact address { font-style: normal; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: #64748b; line-height: 1.7; }
.footer__contact a { color: #64748b; transition: color 0.3s; }
.footer__contact a:hover { color: #5eead4; }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: #475569;
    flex-wrap: wrap;
    gap: 12px;
}

/* ─── Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero__content { padding: 100px 48px 60px; }
    .experience__split { gap: 48px; }
    .location__inner { gap: 48px; }
    .contact__inner { gap: 48px; }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__toggle { display: flex; }
    
    .hero__grid { grid-template-columns: 1fr; }
    .hero__content { padding: 100px 24px 48px; max-width: 100%; }
    .hero__image { min-height: 50vh; }
    .hero__image-wrapper { min-height: 50vh; }
    .hero__scroll { padding: 0 24px 24px; }
    
    .rooms { padding: 80px 0; }
    .rooms__grid { grid-template-columns: 1fr; gap: 24px; }
    
    .experience { padding: 80px 0; }
    .experience__split { grid-template-columns: 1fr; gap: 48px; }
    .exp-img-grid { max-height: 400px; }
    
    .location { padding: 80px 0; }
    .location__inner { grid-template-columns: 1fr; gap: 48px; }
    
    .contact { padding: 80px 0; }
    .contact__inner { grid-template-columns: 1fr; gap: 48px; }
    .form__row { grid-template-columns: 1fr; }
    
    .footer__grid { grid-template-columns: 1fr; gap: 40px; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__trust { flex-direction: column; gap: 12px; }
    .hero__headline { font-size: 2rem; }
}
