﻿/* ===== CSS RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #8B4513;
    --primary-dark: #6B3410;
    --primary-light: #C8956C;
    --accent: #D4A574;
    --white: #FFFFFF;
    --off-white: #F8F6F3;
    --text-dark: #1A1A1A;
    --text-gray: #555555;
    --text-light: #888888;
    --border: #E8E0D8;
    --shadow-sm: 0 2px 8px rgba(139, 69, 19, 0.08);
    --shadow-md: 0 8px 32px rgba(139, 69, 19, 0.12);
    --shadow-lg: 0 20px 60px rgba(139, 69, 19, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; image-orientation: from-image; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== NAVIGATION ===== */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 2rem; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(139,69,19,0.1); transition: var(--transition); }
nav.scrolled { box-shadow: var(--shadow-md); }
.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; }
.logo-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 1.1rem; font-weight: 700; color: var(--primary); line-height: 1.1; }
.logo-sub { font-size: 0.7rem; color: var(--text-light); font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-gray); transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); border-radius: 2px; }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--primary); color: white !important; padding: 10px 22px; border-radius: 50px; font-weight: 600 !important; font-size: 0.875rem !important; box-shadow: 0 4px 15px rgba(139,69,19,0.3); }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,69,19,0.4) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(139,69,19,0.85) 0%, rgba(107,52,16,0.75) 50%, rgba(0,0,0,0.6) 100%); z-index: 1; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 2rem; padding-top: 72px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); color: white; padding: 8px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 500; margin-bottom: 1.5rem; animation: fadeInDown 0.8s ease; }
.hero-badge i { color: var(--accent); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 4.5rem); color: white; line-height: 1.15; margin-bottom: 1.5rem; animation: fadeInUp 0.8s ease 0.2s both; }
.hero h1 span { color: var(--accent); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.88); max-width: 560px; line-height: 1.8; margin-bottom: 2.5rem; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: white; padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem; transition: var(--transition); box-shadow: 0 8px 25px rgba(139,69,19,0.4); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(139,69,19,0.5); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: white; padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem; border: 2px solid rgba(255,255,255,0.4); transition: var(--transition); }
.btn-secondary:hover { background: rgba(255,255,255,0.25); border-color: white; transform: translateY(-2px); }
.hero-stats { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); animation: fadeInUp 0.8s ease 0.8s both; }
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--accent); display: block; line-height: 1; }
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.75rem; animation: bounce 2s infinite; }
.hero-scroll i { font-size: 1.2rem; }

/* ===== FLOATING WHATSAPP ===== */
.float-call { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 14px 22px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; box-shadow: 0 8px 30px rgba(37,211,102,0.4); transition: var(--transition); animation: fadeInRight 1s ease 1s both; }
.float-call:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.float-call .pulse { width: 12px; height: 12px; background: white; border-radius: 50%; position: relative; }
.float-call .pulse::before { content: ''; position: absolute; inset: -4px; border: 2px solid white; border-radius: 50%; animation: pulse 1.5s ease-out infinite; }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; background: rgba(139,69,19,0.1); color: var(--primary); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--text-dark); line-height: 1.3; margin-bottom: 1rem; }
.section-desc { font-size: 1.05rem; color: var(--text-gray); max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ===== FEATURES ===== */
.features { background: var(--off-white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.feature-card { background: white; padding: 2rem; border-radius: var(--radius); text-align: center; transition: var(--transition); border: 1px solid var(--border); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: var(--transition); }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(139,69,19,0.1), rgba(200,149,108,0.15)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.6rem; color: var(--primary); transition: var(--transition); }
.feature-card:hover .feature-icon { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; transform: scale(1.1); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text-dark); }
.feature-card p { font-size: 0.9rem; color: var(--text-gray); line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery-section { background: white; }
.gallery-tabs { display: flex; justify-content: center; gap: 0.8rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.gallery-tab { padding: 10px 24px; border-radius: 50px; border: 2px solid var(--border); background: white; color: var(--text-gray); font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: var(--transition); font-family: 'Inter', sans-serif; }
.gallery-tab.active, .gallery-tab:hover { background: var(--primary); border-color: var(--primary); color: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 1; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(139,69,19,0.6), transparent); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 1.2rem; }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { color: white; font-size: 1.5rem; margin-left: auto; }

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.95); justify-content: center; align-items: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; color: white; font-size: 2rem; cursor: pointer; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; transition: var(--transition); }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: white; font-size: 2rem; cursor: pointer; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; transition: var(--transition); }
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ===== ABOUT ===== */
.about-section { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-stack { position: relative; height: 500px; }
.about-img-main { width: 75%; height: 380px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); position: absolute; top: 0; left: 0; }
.about-img-secondary { width: 55%; height: 260px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); position: absolute; bottom: 0; right: 0; border: 6px solid white; }
.about-badge { position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 16px 24px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-md); white-space: nowrap; z-index: 2; }
.about-badge .num { font-size: 1.8rem; font-weight: 800; display: block; line-height: 1; }
.about-badge .txt { font-size: 0.75rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 1px; }
.about-content { padding-left: 1rem; }
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; }
.about-text { font-size: 1rem; color: var(--text-gray); line-height: 1.85; margin-bottom: 1.5rem; }
.about-highlights { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.highlight-item { display: flex; align-items: flex-start; gap: 12px; }
.highlight-item .icon { width: 36px; height: 36px; min-width: 36px; background: rgba(139,69,19,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.9rem; }
.highlight-item .text strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }
.highlight-item .text span { font-size: 0.85rem; color: var(--text-gray); }

/* ===== ROOMS ===== */
.rooms-section { background: white; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.room-card { background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-img { height: 230px; overflow: hidden; position: relative; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-img img { transform: scale(1.08); }
.room-badge { position: absolute; top: 12px; left: 12px; background: var(--primary); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.room-body { padding: 1.5rem; }
.room-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text-dark); }
.room-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.room-feature { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-gray); background: var(--off-white); padding: 4px 10px; border-radius: 20px; }
.room-feature i { color: var(--primary); font-size: 0.7rem; }
.room-cta { display: block; text-align: center; background: var(--primary); color: white; padding: 12px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; transition: var(--transition); margin-top: 1rem; }
.room-cta:hover { background: var(--primary-dark); }

/* ===== MAP ===== */
.map-section { background: var(--off-white); }
.map-grid { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); height: 420px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }
.map-info { padding-top: 1rem; }
.map-info .section-title { text-align: left; font-size: 1.8rem; }
.map-info .section-tag { text-align: left; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; margin: 2rem 0; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 1rem; background: white; border-radius: var(--radius-sm); border: 1px solid var(--border); transition: var(--transition); }
.contact-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.contact-item .icon { width: 42px; height: 42px; min-width: 42px; background: rgba(139,69,19,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; }
.contact-item .info strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 2px; }
.contact-item .info span { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }
.contact-item a { color: var(--primary); font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }
.map-cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
.map-cta-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.map-cta-btn.phone { background: var(--primary); color: white; box-shadow: 0 4px 15px rgba(139,69,19,0.3); }
.map-cta-btn.phone:hover { background: var(--primary-dark); transform: translateY(-2px); }
.map-cta-btn.whatsapp { background: #25D366; color: white; box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
.map-cta-btn.whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--off-white); padding: 2rem; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.stars { color: #F59E0B; margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text-gray); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.9rem; }
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-info { font-size: 0.78rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-section { background: var(--off-white); }
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-item { background: white; border-radius: var(--radius-sm); border: 1px solid var(--border); margin-bottom: 0.75rem; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--primary-light); }
.faq-question { width: 100%; text-align: left; padding: 1.2rem 1.5rem; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); font-family: 'Inter', sans-serif; }
.faq-question i { color: var(--primary); transition: var(--transition); min-width: 16px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 1.5rem 1.2rem; font-size: 0.9rem; color: var(--text-gray); line-height: 1.8; border-top: 1px solid var(--border); padding-top: 1rem; }

/* ===== FOOTER ===== */
footer { background: linear-gradient(135deg, #1a0a02 0%, var(--primary-dark) 50%, #2d1204 100%); color: white; padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--accent); font-weight: 700; display: block; margin-bottom: 0.3rem; }
.footer-brand .logo-sub { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; }
.footer-brand p { margin-top: 1.2rem; font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 1.2rem; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-contact-item i { color: var(--accent); margin-top: 2px; min-width: 14px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE MENU ===== */
.mobile-menu { display: none; position: fixed; inset: 0; top: 72px; z-index: 999; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); padding: 2rem; flex-direction: column; gap: 1.5rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); padding: 0.75rem 0; border-bottom: 1px solid var(--border); transition: var(--transition); }
.mobile-menu a:hover { color: var(--primary); padding-left: 8px; }
.mobile-call { color: var(--primary) !important; font-weight: 700 !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .map-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    section { padding: 70px 0; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image-stack { height: 300px; }
    .about-content { padding-left: 0; }
    .rooms-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .float-call span { display: none; }
    .float-call { padding: 16px; border-radius: 50%; }
    .float-call .pulse { display: none; }
    .map-grid { gap: 2rem; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .hero-stats { gap: 1rem; }
    .about-image-stack { height: 250px; }
    .about-img-main { width: 70%; height: 240px; }
    .about-img-secondary { width: 55%; height: 180px; }
}

.gallery-grid { position: relative; }
.gallery-grid:not(.expanded) .gallery-item.hidden-item { display: none !important; }
.gallery-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 150px; background: linear-gradient(to top, rgba(255,255,255,1), transparent); pointer-events: none; z-index: 5; transition: opacity 0.3s; }
.gallery-grid.expanded .gallery-fade { opacity: 0; pointer-events: none; }
