/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Nunito', sans-serif;
    color: #2D2D2D;
    background: #FFF9F7;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Color Tokens ── */
:root {
    --coral: #E8634B;
    --coral-dark: #D14F38;
    --coral-light: #F4845C;
    --charcoal: #2D2D2D;
    --charcoal-light: #4A4A4A;
    --cream: #FFF9F7;
    --cream-dark: #FDF0EC;
    --warm-gray: #F5F0ED;
    --soft-shadow: 0 4px 24px rgba(45, 45, 45, 0.08);
    --soft-shadow-lg: 0 12px 48px rgba(45, 45, 45, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; color: var(--charcoal); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-coral { background: var(--coral); color: white; border-color: var(--coral); }
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); box-shadow: 0 8px 24px rgba(232, 99, 75, 0.35); }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: white; }
.btn-white { background: white; color: var(--coral); border-color: white; }
.btn-white:hover { background: var(--cream); box-shadow: var(--soft-shadow); }
.btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Tags ── */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--coral);
    margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.section-desc { font-size: 18px; color: var(--charcoal-light); max-width: 600px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 249, 247, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 99, 75, 0.1);
    transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--soft-shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--charcoal);
}
.nav-logo-icon { width: 36px; height: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--charcoal-light);
    transition: color var(--transition);
    position: relative;
}
.nav-links a:not(.btn):hover { color: var(--coral); }
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
    transition: width var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FFF9F7 0%, #FDF0EC 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: rgba(232, 99, 75, 0.12);
    color: var(--coral);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--charcoal);
}
.hero-title em { color: var(--coral); font-style: italic; }
.hero-desc {
    font-size: 18px;
    color: var(--charcoal-light);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal-light);
}
.hero-stat-num { font-size: 20px; }
.hero-image { position: relative; }
.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--soft-shadow-lg);
}
.hero-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.hero-img-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}
.hero-float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}
.hero-float-card svg { width: 20px; height: 20px; color: var(--coral); flex-shrink: 0; }

/* ── ROOMS ── */
.rooms { padding: 100px 0; background: white; }
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.room-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--soft-shadow-lg); }
.room-card-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--coral);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.room-card-body { padding: 28px; }
.room-title { font-size: 24px; margin-bottom: 12px; }
.room-desc { font-size: 15px; color: var(--charcoal-light); margin-bottom: 20px; line-height: 1.7; }
.room-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}
.room-features svg { width: 16px; height: 16px; color: var(--coral); flex-shrink: 0; }
.btn-block { width: 100%; justify-content: center; }

/* ── ABOUT ── */
.about { padding: 100px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--soft-shadow-lg); }
.about-img-main img { width: 100%; height: 500px; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--soft-shadow-lg);
    border: 6px solid var(--cream);
}
.about-img-secondary img { width: 100%; height: 180px; object-fit: cover; }
.about-pattern {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: repeating-linear-gradient(45deg, var(--coral) 0px, var(--coral) 2px, transparent 2px, transparent 8px);
    opacity: 0.15;
    border-radius: 16px;
    z-index: -1;
}
.about-text .section-tag { text-align: left; }
.about-text .section-title { text-align: left; margin-bottom: 24px; }
.about-p { font-size: 16px; color: var(--charcoal-light); margin-bottom: 16px; line-height: 1.8; }
.about-values { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.value-item { display: flex; gap: 20px; align-items: flex-start; }
.value-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 99, 75, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.value-icon svg { width: 24px; height: 24px; color: var(--coral); }
.value-item strong { display: block; font-size: 16px; color: var(--charcoal); margin-bottom: 4px; }
.value-item span { font-size: 14px; color: var(--charcoal-light); line-height: 1.6; }

/* ── AMENITIES ── */
.amenities { padding: 100px 0; background: white; }
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.amenity-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    border: 2px solid transparent;
}
.amenity-card:hover {
    border-color: var(--coral);
    transform: translateY(-4px);
    box-shadow: var(--soft-shadow);
}
.amenity-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 99, 75, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition);
}
.amenity-card:hover .amenity-icon { background: var(--coral); }
.amenity-icon svg { width: 28px; height: 28px; color: var(--coral); transition: color var(--transition); }
.amenity-card:hover .amenity-icon svg { color: white; }
.amenity-card h3 { font-size: 20px; margin-bottom: 10px; font-family: 'Nunito', sans-serif; font-weight: 800; }
.amenity-card p { font-size: 15px; color: var(--charcoal-light); line-height: 1.7; }

/* ── LOCATION ── */
.location { padding: 100px 0; background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: stretch; }
.location-info { display: flex; flex-direction: column; gap: 32px; }
.location-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: white;
    border-radius: var(--radius);
}
.location-detail svg { width: 24px; height: 24px; color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.location-detail strong { display: block; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--charcoal-light); margin-bottom: 4px; }
.location-detail span, .location-detail a { font-size: 16px; color: var(--charcoal); font-weight: 600; }
.location-detail a:hover { color: var(--coral); }
.location-cta { margin-top: 8px; }
.location-map { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--soft-shadow); min-height: 380px; }

/* ── CTA ── */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #3D3D3D 100%);
    text-align: center;
}
.cta-content { max-width: 640px; margin: 0 auto; }
.cta-title { font-size: clamp(28px, 4vw, 48px); color: white; margin-bottom: 20px; }
.cta-desc { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-ghost svg { width: 18px; height: 18px; }

/* ── CONTACT ── */
.contact { padding: 100px 0; background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-desc { font-size: 16px; color: var(--charcoal-light); margin-bottom: 40px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 99, 75, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--coral); }
.contact-item .label { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--charcoal-light); margin-bottom: 4px; }
.contact-item .value { font-size: 16px; color: var(--charcoal); font-weight: 600; }
.contact-item a.value:hover { color: var(--coral); }

/* ── Form ── */
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--soft-shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.form-group input, .form-group select, .form-group textarea {
    padding: 14px 18px;
    border: 2px solid #E8E0DC;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    background: white;
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--coral); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--charcoal-light); text-align: center; }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 40px 20px; }
.form-success.active { display: flex; }
.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(232, 99, 75, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.success-icon svg { width: 36px; height: 36px; color: var(--coral); }
.form-success h3 { font-size: 24px; }
.form-success p { font-size: 15px; color: var(--charcoal-light); max-width: 320px; }

/* ── FOOTER ── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer-logo { margin-bottom: 16px; color: white; }
.footer-logo-icon { width: 40px; height: 40px; }
.footer-tagline { font-size: 15px; line-height: 1.8; max-width: 280px; }
.footer h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 15px;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--coral); }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
}
.footer-contact svg { width: 16px; height: 16px; color: var(--coral); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--coral); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* ── Mobile Menu ── */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 249, 247, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(232, 99, 75, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-toggle { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-image { order: -1; }
    .hero-img-wrap img { height: 360px; }
    .hero-float-card { left: 16px; bottom: -16px; }
    .rooms-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-secondary { right: 0; bottom: -30px; width: 200px; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
    .hero { padding: 100px 0 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .amenities-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}

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