/* ===== 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: #2D1F2D;
    background: #FFF8F5;
    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 { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Skip link */
.skip-link {
    position: absolute; top: -100%; left: 16px; background: #7B2D3B; color: #fff; padding: 8px 16px; border-radius: 0 0 8px 8px; z-index: 9999; font-size: 14px;
}
.skip-link:focus { top: 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 12px;
    position: relative;
    padding-left: 32px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 2px;
    background: #7B2D3B;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1A0A14;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #6B5060;
    max-width: 560px;
    line-height: 1.7;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: #7B2D3B;
    color: #fff;
    border-color: #7B2D3B;
}
.btn-primary:hover {
    background: #5E1F2B;
    border-color: #5E1F2B;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}
.btn-outline {
    background: transparent;
    color: #7B2D3B;
    border-color: #7B2D3B;
}
.btn-outline:hover {
    background: #7B2D3B;
    color: #fff;
    transform: translateY(-2px);
}
.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}
.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}
.btn-full { width: 100%; justify-content: center; }
.btn-block { width: 100%; justify-content: center; padding: 14px 24px; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(123, 45, 59, 0.1);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #1A0A14;
}
.logo-mark { color: #7B2D3B; }
.logo-text { letter-spacing: -0.5px; }

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #2D1F2D;
    position: relative;
    transition: color 0.3s ease;
}
.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: #7B2D3B;
    transition: width 0.3s ease;
}
.nav-menu a:not(.btn):hover { color: #7B2D3B; }
.nav-menu a:not(.btn):hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px; height: 32px;
    position: relative;
}
.hamburger {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 20px; height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    display: block;
    width: 100%; height: 2px;
    background: #1A0A14;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger span { height: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(0, 0);
}
.nav-toggle[aria-expanded="true"] .hamburger span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(0, 0);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: #FFF8F5;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-shape--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(123,45,59,0.06) 0%, transparent 70%);
    top: -200px; right: -100px;
}
.hero-shape--2 {
    width: 300px; height: 300px;
    background: rgba(244, 205, 205, 0.4);
    bottom: 10%; left: -80px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}
.hero-shape--3 {
    width: 120px; height: 120px;
    background: #7B2D3B;
    opacity: 0.06;
    top: 25%; right: 45%;
    border-radius: 20px;
    transform: rotate(45deg);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #7B2D3B;
    background: rgba(123, 45, 59, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: #1A0A14;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-title span {
    color: #7B2D3B;
    position: relative;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: #6B5060;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7B2D3B;
}
.stat-label {
    font-size: 13px;
    color: #6B5060;
}
.hero-stat-stat {
    color: #D4A0AA;
    font-size: 1.2rem;
}
.hero-image-wrap {
    position: relative;
}
.hero-image-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(123, 45, 59, 0.15);
    position: relative;
    z-index: 1;
}
.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/720;
}
.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26,10,20,0.15) 100%);
    border-radius: 24px;
}
.hero-floating-card {
    position: absolute;
    bottom: 40px; left: -40px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 16px 48px rgba(123, 45, 59, 0.12);
    z-index: 2;
}
.floating-icon {
    width: 48px; height: 48px;
    background: #7B2D3B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.floating-text {
    display: flex;
    flex-direction: column;
}
.floating-text strong {
    font-size: 15px;
    color: #1A0A14;
}
.floating-text span {
    font-size: 13px;
    color: #6B5060;
}

/* ===== AMENITIES ===== */
.amenities {
    padding: 100px 0;
    background: #7B2D3B;
    position: relative;
    overflow: hidden;
}
.amenities .section-tag { color: #F5D5D8; }
.amenities .section-tag::before { background: #F5D5D8; }
.amenities .section-title { color: #fff; }
.amenities .section-subtitle { color: #F0C8CC; }
.amenities-shape {
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    top: -100px; right: -100px;
    pointer-events: none;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.amenity-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}
.amenity-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}
.amenity-icon {
    width: 56px; height: 56px;
    background: rgba(244, 205, 205, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5D5D8;
    margin-bottom: 20px;
}
.amenity-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.amenity-card p {
    font-size: 0.95rem;
    color: #E8C4C8;
    line-height: 1.7;
}

/* ===== ROOMS ===== */
.rooms {
    padding: 100px 0;
    background: #FFF8F5;
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.room-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(123, 45, 59, 0.08);
    transition: all 0.3s ease;
}
.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(123, 45, 59, 0.14);
}
.room-img {
    overflow: hidden;
    aspect-ratio: 560/380;
}
.room-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.room-card:hover .room-img img {
    transform: scale(1.05);
}
.room-info {
    padding: 32px;
}
.room-info h3 {
    font-size: 1.5rem;
    color: #1A0A14;
    margin-bottom: 12px;
}
.room-info > p {
    font-size: 0.95rem;
    color: #6B5060;
    line-height: 1.7;
    margin-bottom: 20px;
}
.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.room-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2D1F2D;
    font-weight: 500;
}
.room-features li svg {
    color: #7B2D3B;
    flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: #FDF0EF;
    position: relative;
    overflow: hidden;
}
.about-shape {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(123,45,59,0.05) 0%, transparent 70%);
    bottom: -200px; left: -200px;
    pointer-events: none;
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about-image-block {
    position: relative;
}
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(123, 45, 59, 0.12);
}
.about-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: 520/640;
}
.about-img-accent {
    position: absolute;
    bottom: -30px; right: -30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(123, 45, 59, 0.15);
    border: 4px solid #FDF0EF;
}
.about-img-accent img {
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: 320/240;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
    font-size: 1.05rem;
    color: #6B5060;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-highlights {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(123, 45, 59, 0.12);
}
.about-highlight {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.highlight-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7B2D3B;
}
.highlight-label {
    font-size: 13px;
    color: #6B5060;
}
.about-highlight-divider {
    width: 1px; height: 40px;
    background: rgba(123, 45, 59, 0.15);
}

/* ===== LOCATION ===== */
.location {
    padding: 100px 0;
    background: #FFF8F5;
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.location-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.location-icon {
    width: 52px; height: 52px;
    background: rgba(123, 45, 59, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B2D3B;
    flex-shrink: 0;
}
.location-detail strong {
    display: block;
    font-size: 1rem;
    color: #1A0A14;
    margin-bottom: 4px;
}
.location-detail p {
    font-size: 0.95rem;
    color: #6B5060;
    line-height: 1.6;
}
.location-detail a {
    color: #7B2D3B;
    font-weight: 500;
    transition: color 0.3s ease;
}
.location-detail a:hover { color: #5E1F2B; }
.location-map {
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(123, 45, 59, 0.1);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: #7B2D3B;
    position: relative;
    overflow: hidden;
}
.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
}
.cta-shape--1 {
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.04);
    top: -150px; left: -100px;
}
.cta-shape--2 {
    width: 200px; height: 200px;
    background: rgba(244, 205, 205, 0.08);
    bottom: -50px; right: 10%;
}
.cta-shape--3 {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.06);
    top: 30%; right: 5%;
    border-radius: 16px;
    transform: rotate(45deg);
}
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cta-content .section-tag { color: #F5D5D8; }
.cta-content .section-tag::before { background: #F5D5D8; }
.cta-content .section-title { color: #fff; margin-bottom: 20px; }
.cta-text {
    font-size: 1.05rem;
    color: #E8C4C8;
    line-height: 1.8;
}
.cta-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}
.cta-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: 6px;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #2D1F2D;
    letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid #E8D5D8;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #2D1F2D;
    background: #FFF8F5;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #7B2D3B;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B89A9E; }

/* Form success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success h3 {
    font-size: 1.5rem;
    color: #1A0A14;
    margin: 16px 0 8px;
}
.form-success p {
    font-size: 0.95rem;
    color: #6B5060;
    line-height: 1.7;
}
.form-success a { color: #7B2D3B; font-weight: 600; }
.form-success .success-icon { margin: 0 auto; }

/* ===== FOOTER ===== */
.site-footer {
    background: #1A0A14;
    color: #C8A8AC;
    padding: 64px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.logo-light { color: #fff; margin-bottom: 16px; }
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #8A6070;
}
.footer-brand a {
    color: #F5D5D8;
    transition: color 0.3s ease;
}
.footer-brand a:hover { color: #fff; }
.footer-links h4,
.footer-hours h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 14px;
    color: #8A6070;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: #F5D5D8; }
.footer-hours p {
    font-size: 1.1rem;
    color: #E8C4C8;
    margin-bottom: 8px;
}
.footer-note {
    font-size: 0.85rem !important;
    color: #6B5060 !important;
    margin-top: 12px !important;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}
.footer-bottom p {
    text-align: center;
    font-size: 13px;
    color: #6B5060;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { gap: 40px; }
    .hero-image-frame img { aspect-ratio: 500/600; }
    .about-inner { gap: 48px; }
    .cta-inner { gap: 48px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0; right: 0;
        width: 280px; height: 100vh;
        background: #FFF8F5;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 24px;
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 99;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-toggle { display: block; z-index: 101; }
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(26,10,20,0.4);
        z-index: 98;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .hero { padding: 100px 0 60px; }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-image-wrap { order: -1; max-width: 400px; margin: 0 auto; }
    .hero-floating-card { left: -10px; bottom: 20px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }

    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .rooms-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-img-accent { right: -10px; bottom: -20px; }
    .location-grid { grid-template-columns: 1fr; }
    .location-map { min-height: 300px; }
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cta-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .amenities-grid { grid-template-columns: 1fr; }
    .hero-floating-card { display: none; }
    .about-highlights { flex-direction: column; align-items: flex-start; gap: 16px; }
    .about-highlight-divider { display: none; }
    .room-features { grid-template-columns: 1fr; }
}
