/* ============================================
   QUAINT EXPERIENCES - Premium STR Redesign
   ============================================ */

/* --- Variables --- */
:root {
    --navy: #0c2340;
    --navy-light: #1a3a5c;
    --teal: #2a7f8f;
    --teal-light: #3ba5b5;
    --sand: #d4a76a;
    --sand-light: #e8c99b;
    --cream: #faf8f5;
    --white: #ffffff;
    --text: #2d3436;
    --text-light: #636e72;
    --border: #e8e4df;
    --shadow-sm: 0 2px 8px rgba(12,35,64,0.06);
    --shadow-md: 0 8px 30px rgba(12,35,64,0.1);
    --shadow-lg: 0 20px 60px rgba(12,35,64,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --heading: 'Cormorant Garamond', Georgia, serif;
    --body: 'Montserrat', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body);
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
h1,h2,h3,h4 { font-family: var(--heading); font-weight: 600; line-height: 1.2; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Header --- */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(12,35,64,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    transition: var(--transition);
}
header .container {
    display: flex; justify-content: center; align-items: center;
    padding: 14px 24px;
}
nav { display: flex; justify-content: center; width: 100%; }
nav ul { display: flex; list-style: none; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: center; }
nav ul li a {
    color: rgba(255,255,255,0.85); font-size: 0.8rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px; padding: 8px 14px;
    border-radius: 6px; transition: var(--transition);
}
nav ul li a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.btn-book {
    background: var(--sand) !important; color: var(--navy) !important;
    font-weight: 700 !important; padding: 10px 24px !important;
    border-radius: 8px !important;
}
.btn-book:hover { background: var(--sand-light) !important; transform: translateY(-1px); }
.menu-toggle { display: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* --- Hero --- */
.hero {
    min-height: 100vh;
    background: linear-gradient(165deg, rgba(12,35,64,0.7) 0%, rgba(12,35,64,0.3) 50%, rgba(42,127,143,0.4) 100%),
                url('images/waterfront-main-view.jpg') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff; padding: 120px 24px 80px;
}
.hero-content { max-width: 850px; }
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700; margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}
.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 300; opacity: 0.9; margin-bottom: 32px;
    max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-features {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px;
}
.hero-features span {
    background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
    padding: 12px 24px; border-radius: 50px; font-size: 0.85rem;
    font-weight: 500; border: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
}
.hero-features i { margin-right: 8px; color: var(--sand-light); }
.booking-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--sand); color: var(--navy); padding: 16px 36px;
    border-radius: 10px; font-weight: 700; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212,167,106,0.4);
    transition: var(--transition);
}
.btn-primary:hover { background: var(--sand-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,167,106,0.5); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff; padding: 16px 36px;
    border: 2px solid rgba(255,255,255,0.4); border-radius: 10px;
    font-weight: 600; font-size: 0.9rem; text-transform: uppercase;
    letter-spacing: 1px; transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

/* --- Stats Bar --- */
.stats-bar {
    background: var(--navy); padding: 40px 0; position: relative; z-index: 2;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stat-item h3 { font-family: var(--heading); font-size: 2.5rem; color: var(--sand); font-weight: 700; }
.stat-item p { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* --- Section Shared --- */
.section-label {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px; color: var(--teal);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--heading); font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy); margin-bottom: 16px; font-weight: 600;
}
.section-subtitle {
    font-size: 1.1rem; color: var(--text-light); max-width: 600px;
    margin: 0 auto 50px; line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: var(--heading); font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 12px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); }

/* --- Property Showcase (About) --- */
.property-showcase { padding: 100px 0; background: var(--cream); }
.showcase-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.showcase-images { position: relative; }
.showcase-main-img {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
}
.showcase-main-img img { width: 100%; height: 100%; object-fit: cover; }
.showcase-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--sand); color: var(--navy); padding: 20px 28px;
    border-radius: var(--radius); font-weight: 700; font-size: 0.9rem;
    box-shadow: var(--shadow-md); text-align: center;
}
.showcase-badge span { display: block; font-size: 1.8rem; font-family: var(--heading); }
.showcase-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--navy); margin-bottom: 20px;
}
.showcase-text > p { color: var(--text-light); font-size: 1.05rem; line-height: 1.8; margin-bottom: 30px; }
.showcase-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px;
}
.showcase-feature {
    display: flex; align-items: flex-start; gap: 14px;
}
.showcase-feature i {
    width: 44px; height: 44px; background: rgba(42,127,143,0.1);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 1.1rem; flex-shrink: 0;
}
.showcase-feature div h4 { font-family: var(--body); font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.showcase-feature div p { font-size: 0.85rem; color: var(--text-light); margin-top: 2px; }

/* --- Experiences --- */
.experiences-section { padding: 100px 0; background: var(--white); }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.exp-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition); position: relative;
}
.exp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.exp-card-img { height: 220px; overflow: hidden; }
.exp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.exp-card:hover .exp-card-img img { transform: scale(1.08); }
.exp-card-body { padding: 28px; }
.exp-card-body h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
.exp-card-body p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.exp-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--teal); font-weight: 500; }
.exp-meta i { margin-right: 4px; }

/* --- Amenities --- */
.amenities-section { padding: 100px 0; background: var(--cream); }
.amenities-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px;
}
.amenity-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 16px; text-align: center;
    transition: var(--transition);
}
.amenity-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.amenity-card i { font-size: 1.8rem; color: var(--teal); margin-bottom: 12px; display: block; }
.amenity-card h3 { font-family: var(--body); font-size: 0.85rem; font-weight: 600; color: var(--navy); }

/* --- Gallery --- */
.gallery-section { padding: 100px 0; background: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 12px;
}
.gallery-item {
    border-radius: var(--radius); overflow: hidden; cursor: pointer;
    position: relative; transition: var(--transition);
}
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(12,35,64,0.4) 0%, transparent 50%);
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover { transform: scale(1.02); z-index: 2; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.span-row { grid-row: span 2; }
.gallery-categories { display: none; }

/* --- Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative; overflow: hidden;
}
.reviews-section::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: rgba(42,127,143,0.08);
}
.reviews-section .section-header h2 { color: #fff; }
.reviews-section .section-header p { color: rgba(255,255,255,0.6); }
.reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    position: relative; z-index: 1;
}
.review-card {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
    padding: 36px; transition: var(--transition);
}
.review-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.review-stars { color: var(--sand); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 20px; }
.review-card blockquote {
    color: rgba(255,255,255,0.9); font-size: 1rem; line-height: 1.8;
    font-style: italic; font-weight: 300; margin: 0 0 24px; padding: 0; border: none;
}
.review-author {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
}
.review-author strong { color: var(--sand-light); font-size: 0.95rem; }
.review-author span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* --- Blog --- */
.blog-section { padding: 100px 0; background: var(--cream); }
.blog-posts-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px;
}
.blog-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px;
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.blog-card .blog-date {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--teal); display: block; margin-bottom: 12px;
}
.blog-card h3 { font-family: var(--heading); font-size: 1.4rem; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.blog-card .blog-preview { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.blog-card .blog-read-more {
    color: var(--teal); font-weight: 600; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 1px;
}
.blog-card .blog-read-more:hover { color: var(--navy); }
.blog-load-more {
    display: block; margin: 40px auto 0; padding: 14px 36px;
    background: var(--white); border: 2px solid var(--navy);
    border-radius: 10px; font-family: var(--body); font-weight: 600;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--navy); cursor: pointer; transition: var(--transition);
}
.blog-load-more:hover { background: var(--navy); color: #fff; }
.loading-posts { text-align: center; color: var(--text-light); padding: 40px; }

/* Blog Modal */
.blog-modal-overlay {
    position: fixed; inset: 0; background: rgba(12,35,64,0.8);
    backdrop-filter: blur(8px); z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.blog-modal-overlay.active { opacity: 1; }
.blog-modal {
    background: var(--white); border-radius: var(--radius-lg);
    max-width: 700px; width: 90%; max-height: 80vh; overflow-y: auto;
    padding: 48px; position: relative;
}
.blog-modal h2 { font-family: var(--heading); font-size: 2rem; color: var(--navy); margin-bottom: 8px; }
.blog-modal .blog-date { display: block; margin-bottom: 24px; color: var(--teal); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.blog-modal-body { color: var(--text); line-height: 1.8; }
.blog-modal-body p { margin-bottom: 16px; }
.blog-modal-close {
    position: absolute; top: 20px; right: 24px; font-size: 1.8rem;
    cursor: pointer; color: var(--text-light); line-height: 1;
}
.blog-modal-close:hover { color: var(--navy); }

/* --- Location --- */
.location-section { padding: 100px 0; background: var(--white); }
.location-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start;
}
.location-grid iframe { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.location-info {
    background: var(--cream); padding: 36px; border-radius: var(--radius-lg);
}
.location-info h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 24px; }
.location-info ul { list-style: none; }
.location-info li {
    padding: 14px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 14px; font-size: 1rem;
}
.location-info li:last-child { border-bottom: none; }
.location-info li i { color: var(--teal); width: 20px; text-align: center; }

/* --- CTA / Booking --- */
.cta-section {
    padding: 100px 0; text-align: center; color: #fff; position: relative; overflow: hidden;
    background: linear-gradient(165deg, var(--teal) 0%, var(--navy) 100%);
}
.cta-section::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.cta-content { max-width: 650px; margin: 0 auto; position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 16px; }
.cta-content > p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 24px; }
.cta-price {
    font-size: 2.2rem; font-weight: 700; color: var(--sand-light); margin-bottom: 32px;
}
.cta-price span { font-size: 0.9rem; font-weight: 300; opacity: 0.7; color: #fff; }
.cta-features {
    list-style: none; text-align: left; max-width: 420px; margin: 0 auto 36px;
}
.cta-features li {
    padding: 8px 0 8px 28px; position: relative; color: rgba(255,255,255,0.9); font-size: 1rem;
}
.cta-features li::before { content: '✓'; position: absolute; left: 0; color: var(--sand-light); font-weight: 700; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-buttons .btn-primary { min-width: 200px; }
.cta-buttons .btn-secondary { min-width: 200px; border-color: rgba(255,255,255,0.3); }
.cta-guarantee { font-size: 0.85rem; opacity: 0.6; }
.cta-guarantee i { margin-right: 6px; }

/* --- Footer --- */
footer {
    background: var(--navy); color: #fff; padding: 80px 0 30px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 60px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}
.footer-brand h2 { font-family: var(--heading); font-size: 2rem; color: #fff; margin-bottom: 8px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social a {
    display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08); border-radius: 10px; color: #fff;
    font-size: 1.2rem; margin-right: 10px; transition: var(--transition);
}
.footer-social a:hover { background: var(--sand); color: var(--navy); }
.footer-col h3 {
    font-family: var(--body); font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; color: var(--sand);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-col p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 8px; }
.footer-col p i { margin-right: 8px; color: var(--teal-light); }
.footer-booking a {
    display: inline-block; margin-right: 16px; color: rgba(255,255,255,0.6);
    font-weight: 500; font-size: 0.9rem;
}
.footer-booking a:hover { color: var(--sand); }
.footer-bottom { text-align: center; color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* --- Gallery Modal --- */
.modal {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(12,35,64,0.95); backdrop-filter: blur(10px);
}
.modal-content {
    position: relative; width: 90%; max-width: 1100px;
    margin: 40px auto; height: calc(100vh - 80px);
}
.modal-image-container { height: 100%; display: flex; align-items: center; justify-content: center; }
#modal-image { max-height: 100%; max-width: 100%; object-fit: contain; border-radius: var(--radius); }
.close-modal {
    position: fixed; top: 20px; right: 30px; color: #fff;
    font-size: 2.5rem; cursor: pointer; z-index: 2001;
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border-radius: 50%;
}
.close-modal:hover { background: rgba(255,255,255,0.2); }
.prev, .next {
    cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%);
    color: #fff; font-size: 2rem; padding: 16px;
    background: rgba(255,255,255,0.1); border-radius: 50%;
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); user-select: none;
}
.prev { left: 20px; }
.next { right: 20px; }
.prev:hover, .next:hover { background: rgba(255,255,255,0.25); }

/* --- Floating Book Button --- */
.floating-book-btn {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
}
.floating-book-btn a {
    display: flex; align-items: center; gap: 10px;
    background: var(--sand); color: var(--navy); padding: 16px 28px;
    border-radius: 14px; font-weight: 700; font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(212,167,106,0.4);
    transition: var(--transition); text-transform: uppercase; letter-spacing: 0.5px;
}
.floating-book-btn a:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(212,167,106,0.5); }

/* --- Welcome Modal --- */
.welcome-modal {
    display: none; position: fixed; inset: 0;
    background: rgba(12,35,64,0.7); backdrop-filter: blur(8px);
    z-index: 3000; align-items: center; justify-content: center;
}
.welcome-modal.show { display: flex; }
.welcome-content {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 48px; max-width: 520px; width: 90%; text-align: center;
    box-shadow: var(--shadow-lg);
}
.welcome-content h2 { font-family: var(--heading); color: var(--navy); font-size: 2rem; margin-bottom: 8px; }
.welcome-content > p { color: var(--text-light); margin-bottom: 28px; }
.interest-options {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; margin-bottom: 16px;
}
.interest-btn {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 16px 10px; border: 2px solid var(--border); border-radius: var(--radius);
    background: var(--white); cursor: pointer; transition: var(--transition);
    font-family: var(--body); font-size: 0.8rem; font-weight: 500; color: var(--navy);
}
.interest-btn:hover { border-color: var(--teal); background: rgba(42,127,143,0.05); }
.interest-btn i { font-size: 1.4rem; color: var(--teal); }
.skip-btn {
    background: none; border: none; color: var(--text-light);
    cursor: pointer; font-size: 0.85rem; padding: 8px 16px;
}
.skip-btn:hover { color: var(--navy); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    header .container { justify-content: space-between; }
    nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--navy); padding: 20px; gap: 4px; }
    nav ul.show { display: flex; }
    .menu-toggle { display: block; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .exp-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-item.span-2 { grid-column: span 1; }
    .gallery-item.span-row { grid-row: span 1; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .showcase-features { grid-template-columns: 1fr; }
    .hero-features { flex-direction: column; align-items: center; }
    .booking-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
    .floating-book-btn { bottom: 16px; right: 16px; }
    .floating-book-btn a { padding: 14px 20px; font-size: 0.8rem; }
}

/* --- Animations --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
