/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2D1F24;
    background: #FDF6F6;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5E2230;
    --blush: #F4C2C2;
    --blush-light: #FDE8E8;
    --cream: #FDF6F6;
    --white: #FFFFFF;
    --dark: #2D1F24;
    --gray: #6B5B60;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(123,45,59,0.10);
    --shadow-lg: 0 12px 48px rgba(123,45,59,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; line-height: 1.15; }
.text-burgundy { color: var(--burgundy); }
.text-blush { color: var(--burgundy); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9375rem;
    border: 2px solid transparent; border-radius: 50px;
    padding: 0.75rem 1.75rem; cursor: pointer; transition: all var(--transition);
    white-space: nowrap;
}
.btn--primary { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.btn--primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn--outline:hover { background: var(--burgundy); color: var(--white); transform: translateY(-2px); }
.btn--white { background: var(--white); color: var(--burgundy); border-color: var(--white); }
.btn--white:hover { background: var(--blush-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background: var(--white); color: var(--burgundy); transform: translateY(-2px); }
.btn--phone { background: var(--blush); color: var(--burgundy); border-color: var(--blush); padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn--phone:hover { background: var(--white); transform: translateY(-2px); }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn--sm { padding: 0.6rem 1.5rem; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; padding: 1rem; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253,246,246,0.92); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123,45,59,0.08);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 24px rgba(123,45,59,0.10); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 0.625rem; font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.125rem; color: var(--burgundy); }
.logo--white { color: var(--white); }
.logo-icon { flex-shrink: 0; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a:not(.btn) { font-weight: 500; font-size: 0.9375rem; color: var(--dark); transition: color var(--transition); }
.nav a:not(.btn):hover { color: var(--burgundy); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.25rem; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--burgundy); border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; padding-top: 5rem; padding-bottom: 2rem;
    background: var(--cream); overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; opacity: 0.12; }
.shape--circle1 { width: 600px; height: 600px; background: var(--burgundy); top: -200px; right: -150px; }
.shape--circle2 { width: 300px; height: 300px; background: var(--blush); bottom: 10%; left: -80px; }
.shape--rect1 { width: 200px; height: 200px; background: var(--burgundy); top: 30%; left: 5%; border-radius: var(--radius-lg); transform: rotate(15deg); opacity: 0.06; }
.shape--rect2 { width: 120px; height: 320px; background: var(--blush); bottom: 20%; right: 10%; border-radius: 60px; transform: rotate(-10deg); opacity: 0.10; }
.shape--triangle { width: 0; height: 0; border-left: 100px solid transparent; border-right: 100px solid transparent; border-bottom: 170px solid var(--burgundy); opacity: 0.06; top: 15%; right: 25%; transform: rotate(20deg); border-radius: 8px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--blush-light); color: var(--burgundy);
    font-size: 0.8125rem; font-weight: 600; padding: 0.5rem 1rem;
    border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--dark); margin-bottom: 1.25rem; }
.hero-subtitle { font-size: 1.125rem; color: var(--gray); line-height: 1.7; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 800; color: var(--burgundy); }
.stat-label { font-size: 0.8125rem; color: var(--gray); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--blush); }
.hero-image-wrap { position: relative; }
.hero-img-main { border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
    position: absolute; bottom: -2rem; left: -3rem;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 4px solid var(--white);
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 60px; }

/* ===== SECTION SHARED ===== */
.section-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--burgundy);
    background: var(--blush-light); padding: 0.375rem 1rem;
    border-radius: 50px; margin-bottom: 1rem;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-desc { font-size: 1.0625rem; color: var(--gray); max-width: 600px; line-height: 1.7; }
section { padding: 6rem 0; }

/* ===== ROOMS ===== */
.rooms { background: var(--white); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-desc { margin: 0 auto; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.room-card {
    background: var(--cream); border-radius: var(--radius-lg); overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.room-card-img { position: relative; overflow: hidden; aspect-ratio: 520/340; }
.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-card-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--burgundy); color: var(--white);
    font-size: 0.75rem; font-weight: 700; padding: 0.375rem 0.875rem;
    border-radius: 50px; text-transform: uppercase; letter-spacing: 0.05em;
}
.room-card-badge--blush { background: var(--blush); color: var(--burgundy); }
.room-card-body { padding: 1.75rem; }
.room-card-body h3 { font-size: 1.375rem; margin-bottom: 0.625rem; color: var(--dark); }
.room-card-body > p { font-size: 0.9375rem; color: var(--gray); margin-bottom: 1.25rem; line-height: 1.6; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin-bottom: 1.5rem; }
.room-amenities li { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 500; color: var(--dark); }
.room-amenities li svg { flex-shrink: 0; }
.room-card-body .btn { margin-top: auto; }

/* ===== WHY US ===== */
.why-us {
    background: var(--cream); position: relative; overflow: hidden;
}
.why-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.why-shape { position: absolute; border-radius: 50%; }
.why-shape--1 { width: 400px; height: 400px; background: var(--blush); top: -100px; right: -100px; opacity: 0.2; }
.why-shape--2 { width: 200px; height: 200px; background: var(--burgundy); bottom: 10%; left: 5%; opacity: 0.05; }
.why-shape--3 { width: 100px; height: 100px; background: var(--blush); top: 40%; right: 15%; opacity: 0.3; border-radius: 20px; transform: rotate(45deg); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.why-content .section-desc { margin-bottom: 2rem; }
.features-list { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.feature-icon {
    flex-shrink: 0; width: 56px; height: 56px;
    background: var(--white); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
}
.feature-item h4 { font-family: 'Inter', sans-serif; font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--dark); }
.feature-item p { font-size: 0.9375rem; color: var(--gray); line-height: 1.6; }
.why-images { position: relative; }
.why-img-grid { display: grid; gap: 1.5rem; }
.why-img-grid--top { border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg); overflow: hidden; }
.why-img-grid--top img { width: 100%; height: 100%; object-fit: cover; }
.why-img-grid--bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: end; }
.why-img-grid--bottom img { border-radius: var(--radius); overflow: hidden; }
.why-img-accent {
    background: var(--burgundy); border-radius: var(--radius);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 2rem; text-align: center; min-height: 140px;
}
.why-img-accent-text { color: var(--blush); font-size: 0.875rem; font-weight: 600; margin-top: 0.5rem; }

/* ===== LOCATION ===== */
.location { background: var(--white); }
.location-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: stretch; border-radius: var(--radius-lg); overflow: hidden;
}
.location-info { padding: 3rem; background: var(--burgundy); color: var(--white); border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.location-info .section-tag { background: rgba(244,194,194,0.2); color: var(--blush); }
.location-info .section-title { color: var(--white); }
.location-info .section-title .text-burgundy { color: var(--blush); }
.location-info .section-desc { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.location-details { display: flex; flex-direction: column; gap: 1.5rem; }
.location-detail { display: flex; gap: 1rem; align-items: flex-start; }
.location-detail-icon {
    flex-shrink: 0; width: 48px; height: 48px;
    background: rgba(244,194,194,0.15); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
}
.location-detail strong { display: block; font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--blush); }
.location-detail span, .location-detail a { font-size: 0.9375rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
.location-detail a:hover { color: var(--white); text-decoration: underline; }
.location-map { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; overflow: hidden; min-height: 400px; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--burgundy); position: relative; overflow: hidden;
    padding: 5rem 0;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 50%; }
.cta-shape--1 { width: 500px; height: 500px; background: var(--blush); top: -250px; left: -100px; opacity: 0.08; }
.cta-shape--2 { width: 300px; height: 300px; background: var(--white); bottom: -150px; right: 10%; opacity: 0.06; }
.cta-shape--3 { width: 80px; height: 80px; background: var(--blush); top: 20%; right: 30%; opacity: 0.15; border-radius: 16px; transform: rotate(30deg); }
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.cta-text { font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-card {
    display: flex; align-items: center; gap: 1rem;
    background: var(--white); padding: 1.25rem 1.5rem;
    border-radius: var(--radius); box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.contact-card:hover { transform: translateX(6px); }
.contact-card-icon {
    flex-shrink: 0; width: 52px; height: 52px;
    background: var(--blush-light); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
}
.contact-card strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--dark); margin-bottom: 0.125rem; }
.contact-card a, .contact-card span { font-size: 0.9375rem; color: var(--gray); }
.contact-card a:hover { color: var(--burgundy); text-decoration: underline; }
.contact-form-wrap { position: relative; }
.contact-form {
    background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.contact-form-title { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--dark); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 0.375rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 0.875rem 1rem; border: 2px solid var(--blush);
    border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 0.9375rem;
    color: var(--dark); background: var(--cream); transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--burgundy); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: none; text-align: center; padding: 3rem 2rem;
    background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.form-success.show { display: block; }
.form-success-icon { margin-bottom: 1rem; }
.form-success h4 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--dark); }
.form-success p { color: var(--gray); }

/* ===== FOOTER ===== */
.footer { background: var(--burgundy); color: var(--white); padding: 0 0 2rem; position: relative; }
.footer-wave { position: absolute; top: -1px; left: 0; right: 0; line-height: 0; }
.footer-wave svg { width: 100%; height: 50px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem;
    padding: 4rem 0 3rem;
}
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9375rem; margin-top: 1rem; line-height: 1.7; }
.footer-links h5, .footer-contact h5 { font-family: 'Inter', sans-serif; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blush); margin-bottom: 1rem; }
.footer-links a { display: block; color: rgba(255,255,255,0.75); font-size: 0.9375rem; padding: 0.375rem 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact a { display: block; color: rgba(255,255,255,0.75); font-size: 0.9375rem; padding: 0.25rem 0; transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-contact span { color: rgba(255,255,255,0.75); font-size: 0.9375rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }

/* ===== ANIMATIONS ===== */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE NAV ===== */
.nav-overlay {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(45,31,36,0.5); backdrop-filter: blur(4px);
}
.nav-overlay.open { display: block; }
.nav-mobile {
    position: fixed; top: 0; right: -300px; width: 280px; height: 100%;
    background: var(--white); z-index: 1001; padding: 5rem 2rem 2rem;
    display: flex; flex-direction: column; gap: 1.5rem;
    transition: right var(--transition); box-shadow: -8px 0 32px rgba(0,0,0,0.15);
}
.nav-mobile.open { right: 0; }
.nav-mobile a { font-size: 1.125rem; font-weight: 600; color: var(--dark); padding: 0.5rem 0; border-bottom: 1px solid var(--blush-light); }
.nav-mobile a:last-child { border: none; }
.nav-mobile .btn { margin-top: 1rem; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-wrap { max-width: 500px; margin: 0 auto; }
    .hero-img-float { left: -1rem; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .why-layout { grid-template-columns: 1fr; gap: 3rem; }
    .why-images { order: -1; max-width: 500px; margin: 0 auto; }
    .location-layout { grid-template-columns: 1fr; }
    .location-info { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .location-map { border-radius: 0 0 var(--radius-lg) var(--radius-lg); min-height: 300px; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }
    section { padding: 4rem 0; }
    .rooms-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .hero-img-float { display: none; }
    .why-img-grid--bottom { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 1rem; }
    .stat-divider { width: 40px; height: 1px; }
    .contact-form { padding: 1.5rem; }
}
