/* ============================================
   ATTICO VISTA MARE - Premium Redesign
   Sea & Sand Theme — Mobile First
   ============================================ */

/* --- Tokens --- */
:root {
    --bg: #FEFCF8;
    --bg-alt: #F4F0E8;
    --bg-card: #FFFFFF;
    --sand: #EDE8DB;
    --sand-dark: #D4CEBC;

    --navy: #0F2B4C;
    --navy-light: #1D3F64;
    --text: #1A2E44;
    --text-mid: #4A5E73;
    --text-light: #7A8D9F;

    --blue: #0077B6;
    --blue-light: #00A8E8;
    --blue-dark: #005C8F;
    --blue-glow: rgba(0, 119, 182, 0.15);
    --blue-glow-strong: rgba(0, 119, 182, 0.35);

    --white: #FFFFFF;
    --whatsapp: #25d366;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 28px;
    --r-xl: 40px;
    --r-full: 100px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --dur: 0.8s;
    --dur-fast: 0.4s;
    --dur-slow: 1.4s;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* --- Loader --- */
.loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-wave { display: flex; gap: 4px; justify-content: center; margin-bottom: 20px; }
.loader-wave span {
    width: 3px; height: 20px; background: var(--blue); border-radius: 3px;
    animation: wave 1.2s ease-in-out infinite;
}
.loader-wave span:nth-child(2) { animation-delay: 0.1s; }
.loader-wave span:nth-child(3) { animation-delay: 0.2s; }
.loader-wave span:nth-child(4) { animation-delay: 0.3s; }
.loader-wave span:nth-child(5) { animation-delay: 0.4s; }
@keyframes wave {
    0%, 100% { height: 20px; opacity: 0.5; }
    50% { height: 35px; opacity: 1; }
}
.loader-text {
    font-family: var(--font-display); font-size: 1.1rem;
    color: var(--text-light); letter-spacing: 3px; text-transform: uppercase;
}

/* --- Cursor (desktop) --- */
.cursor-dot {
    position: fixed; top: 0; left: 0; z-index: 9998;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--blue); pointer-events: none;
    transition: transform 0.15s var(--ease-out);
    mix-blend-mode: difference;
    opacity: 0;
}
@media (hover: hover) { .cursor-dot { opacity: 1; } }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(60px, 10vh, 120px) 0; }

/* --- Typography --- */
.heading-lg {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15;
    color: var(--navy); margin-bottom: 20px;
}
.heading-lg em { font-style: italic; color: var(--blue); }
.text-lead { font-size: 1.15rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.7; }
.text-body { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.8; }
.text-sub { font-size: 1rem; color: var(--text-light); max-width: 520px; margin: 0 auto; }
.tag {
    display: inline-block; font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue);
    padding: 6px 16px; border: 1.5px solid var(--blue); border-radius: var(--r-full);
    margin-bottom: 16px;
}
.section-intro { text-align: center; margin-bottom: clamp(40px, 6vh, 70px); }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.04em; border-radius: var(--r-full);
    transition: all var(--dur-fast) var(--ease-out); cursor: pointer;
    text-transform: uppercase; position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--blue); color: var(--white);
    box-shadow: 0 4px 15px rgba(0,119,182,0.3);
}
.btn-primary:hover {
    background: var(--blue-dark); transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,119,182,0.4);
}
.btn-glass {
    background: rgba(255,255,255,0.2); color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.35); transform: translateY(-2px); }
.btn-outline-dark {
    background: transparent; color: var(--navy); border: 1.5px solid var(--sand-dark);
}
.btn-outline-dark:hover {
    border-color: var(--blue); color: var(--blue); background: var(--blue-glow);
}
.btn-lg { padding: 18px 36px; font-size: 0.95rem; }
.btn-glow::before {
    content: ''; position: absolute; inset: -2px; border-radius: inherit;
    background: var(--blue); opacity: 0; filter: blur(15px);
    transition: opacity 0.4s; z-index: -1;
}
.btn-glow:hover::before { opacity: 0.4; }
.btn-whatsapp {
    background: var(--whatsapp); color: var(--white); padding: 14px 28px;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
    border-radius: var(--r-full); text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    transition: all var(--dur-fast) var(--ease-out);
}
.btn-whatsapp svg { width: 20px; height: 20px; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: all var(--dur-fast) var(--ease-out);
}
.navbar.scrolled {
    background: rgba(254, 252, 248, 0.8);
    backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.logo-img { height: 32px; border-radius: 6px; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.1; }
.logo-sub { font-size: 0.65rem; color: var(--text-light); letter-spacing: 0.15em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
    font-size: 0.8rem; font-weight: 500; color: var(--text-mid);
    transition: color 0.3s;
    position: relative; overflow: hidden;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1.5px; background: var(--blue);
    transition: width 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 22px; border: 1.5px solid var(--blue); border-radius: var(--r-full);
    color: var(--blue); font-size: 0.8rem; font-weight: 600;
    transition: all 0.3s var(--ease-out);
}
.nav-cta svg { transition: transform 0.3s var(--ease-out); }
.nav-cta:hover { background: var(--blue); color: var(--white); }
.nav-cta:hover svg { transform: translate(2px, -2px); }

/* Mobile Nav */
.nav-toggle { display: none; padding: 8px; z-index: 1001; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.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 {
    position: relative; height: 100svh; min-height: 600px;
    display: flex; align-items: flex-end; justify-content: center;
    overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1.5s var(--ease-smooth);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%; object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to top, rgba(15,43,76,0.85) 0%, rgba(15,43,76,0.3) 40%, transparent 70%),
        linear-gradient(to bottom, rgba(15,43,76,0.2) 0%, transparent 30%);
}
.hero-content {
    position: relative; z-index: 2; text-align: center;
    padding: 0 20px 0; max-width: 750px; margin-bottom: 20px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: var(--r-full);
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.9);
    letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px;
}
.badge-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}
.hero-title { margin-bottom: 20px; }
.title-line {
    display: block; font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 5rem); font-weight: 500;
    line-height: 1.05; color: var(--white); letter-spacing: -0.5px;
}
.title-accent em { color: var(--blue-light); font-style: italic; }
.hero-desc {
    font-size: clamp(0.9rem, 2vw, 1.1rem); color: rgba(255,255,255,0.75);
    max-width: 500px; margin: 0 auto 28px; line-height: 1.6;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 0; }
.hero-stats {
    position: relative; z-index: 2;
    display: flex; gap: 6px; justify-content: center; flex-wrap: wrap;
    padding: 0 20px 28px;
}
.stat-pill {
    display: flex; align-items: baseline; gap: 4px;
    padding: 10px 18px; border-radius: var(--r-full);
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    color: var(--white); font-size: 0.8rem;
}
.stat-pill strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }

/* Hero Dots */
.hero-dots {
    position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; gap: 8px;
}
.dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.3); border: none; cursor: pointer;
    transition: all 0.4s var(--ease-out);
}
.dot.active { width: 28px; border-radius: 4px; background: var(--white); }

/* Scroll Cue */
.scroll-cue {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    z-index: 3;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--bg); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.visual-stack { position: relative; }
.stack-main {
    border-radius: var(--r-lg); aspect-ratio: 3/4; object-fit: cover;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.stack-float {
    position: absolute; bottom: -30px; right: -30px;
    width: 45%; aspect-ratio: 1; object-fit: cover;
    border-radius: var(--r-md); border: 4px solid var(--bg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: transform 0.8s var(--ease-out);
}
.about-grid:hover .stack-float { transform: translate(-5px, -5px); }
.about-content { max-width: 480px; }
.feature-chips { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.chip {
    display: flex; align-items: center; gap: 14px; padding: 14px 18px;
    background: var(--bg-alt); border-radius: var(--r-md);
    transition: all 0.3s var(--ease-out);
}
.chip:hover { transform: translateX(6px); background: var(--sand); }
.chip-icon { font-size: 1.4rem; flex-shrink: 0; }
.chip strong { display: block; font-size: 0.88rem; color: var(--navy); }
.chip span { font-size: 0.78rem; color: var(--text-light); }

/* ============================================
   GALLERY
   ============================================ */
.gallery { background: var(--bg-alt); }
.gallery-mosaic {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.mosaic-item {
    position: relative; border-radius: var(--r-md); overflow: hidden;
    cursor: pointer; aspect-ratio: 4/3;
}
.mosaic-item.mosaic-wide { grid-column: span 2; }
.mosaic-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-overlay {
    position: absolute; inset: 0; padding: 20px;
    background: linear-gradient(to top, rgba(15,43,76,0.7) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    opacity: 0; transition: opacity 0.4s;
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }
.mosaic-tag {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--blue-light); margin-bottom: 4px;
}
.mosaic-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.85); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(15,43,76,0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s var(--ease-out);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lb-content { max-width: 90vw; max-height: 85vh; text-align: center; }
.lb-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--r-sm); }
.lb-caption { margin-top: 16px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.lb-close, .lb-arrow {
    position: absolute; color: var(--white); padding: 12px;
    transition: all 0.3s; z-index: 10;
}
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-arrow:hover { color: var(--blue-light); transform: scale(1.2); }
.lb-arrow:hover { transform: translateY(-50%) scale(1.2); }

/* ============================================
   AMENITIES
   ============================================ */
.amenities { background: var(--bg); }
.amenities-scroll {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.amenity-card {
    padding: 28px 20px; text-align: center;
    background: var(--bg-card); border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--r-md);
    transition: all 0.4s var(--ease-out);
}
.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,119,182,0.08);
    border-color: var(--blue);
}
.amenity-icon-wrap {
    width: 48px; height: 48px; margin: 0 auto 14px;
    color: var(--blue);
}
.amenity-icon-wrap svg { width: 100%; height: 100%; }
.amenity-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.amenity-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* ============================================
   LOCATION
   ============================================ */
.location { background: var(--bg-alt); }
.location-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.location-content .heading-lg { text-align: left; }
.distance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.distance-card {
    padding: 14px 16px; background: var(--bg-card);
    border: 1px solid rgba(0,0,0,0.04); border-radius: var(--r-sm);
    transition: all 0.3s var(--ease-out);
}
.distance-card:hover { transform: translateY(-3px); border-color: var(--blue); }
.dist-val {
    display: block; font-family: var(--font-display); font-size: 1.3rem;
    font-weight: 600; color: var(--blue); line-height: 1; margin-bottom: 2px;
}
.dist-name { font-size: 0.78rem; color: var(--text-light); }
.location-visual img {
    border-radius: var(--r-lg); width: 100%;
    aspect-ratio: 4/5; object-fit: cover;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* ============================================
   PRICING
   ============================================ */
.pricing { background: var(--bg); }
.pricing-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; align-items: stretch;
}
.price-card {
    position: relative; padding: 36px 28px; text-align: center;
    background: var(--bg-card); border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--r-lg);
    display: flex; flex-direction: column;
    transition: all 0.4s var(--ease-out);
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.price-card-featured {
    border-color: var(--blue); transform: scale(1.04);
    background: linear-gradient(to bottom, rgba(0,119,182,0.04), var(--bg-card));
}
.price-card-featured:hover { transform: scale(1.04) translateY(-6px); }
.price-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--blue); color: var(--white);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 5px 18px; border-radius: var(--r-full);
    white-space: nowrap;
}
.price-header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 2px; color: var(--navy); }
.price-period { font-size: 0.78rem; color: var(--text-light); margin-bottom: 20px; display: block; }
.price-amount { margin-bottom: 20px; display: flex; align-items: baseline; justify-content: center; gap: 3px; }
.price-currency { font-size: 1.1rem; color: var(--blue); font-weight: 300; }
.price-value { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: var(--blue); line-height: 1; }
.price-unit { font-size: 0.8rem; color: var(--text-light); }
.price-features { margin-bottom: 28px; flex-grow: 1; text-align: left; }
.price-features li {
    font-size: 0.85rem; color: var(--text-mid); padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    display: flex; align-items: center; gap: 8px;
}
.price-features li::before {
    content: '✓'; color: var(--blue); font-weight: 700; font-size: 0.75rem;
}
.price-features li:last-child { border-bottom: none; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews { background: var(--bg-alt); }
.reviews-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
    padding: 28px; background: var(--bg-card);
    border: 1px solid rgba(0,0,0,0.04); border-radius: var(--r-lg);
    transition: all 0.4s var(--ease-out);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }
.review-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.85rem; color: var(--navy); }
.review-author span { font-size: 0.75rem; color: var(--text-light); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,168,232,0.15) 0%, transparent 70%);
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner .heading-lg { color: var(--white); }
.cta-inner .heading-lg em { color: var(--blue-light); }
.cta-inner .text-sub { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT ROW
   ============================================ */
.contact { background: var(--bg); }
.contact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 32px 20px; background: var(--bg-card);
    border: 1px solid rgba(0,0,0,0.04); border-radius: var(--r-lg);
    transition: all 0.4s var(--ease-out);
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 10px 30px rgba(0,119,182,0.08); }
.contact-card svg { width: 32px; height: 32px; margin-bottom: 12px; color: var(--blue); }
.contact-card strong { font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.contact-card span { font-size: 0.8rem; color: var(--text-light); }
.contact-wa svg { color: var(--whatsapp); }
.contact-wa:hover { border-color: var(--whatsapp); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 0 28px;
}
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); max-width: 260px; }
.footer-managed { margin-top: 8px; }
.footer-managed a { color: var(--blue-light); text-decoration: underline; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4 {
    font-family: var(--font-display); font-size: 1rem; font-weight: 600;
    color: var(--white); margin-bottom: 4px;
}
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* Floating WhatsApp */
.fab-whatsapp {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--whatsapp); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    transition: all 0.3s var(--ease-out);
    animation: fabPulse 3s ease-in-out infinite;
}
.fab-whatsapp svg { width: 28px; height: 28px; }
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
@keyframes fabPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
/* Entry anims controlled by JS */
.anim-fade { opacity: 0; transform: translateY(20px); }
.anim-fade.visible { opacity: 1; transform: translateY(0); transition: all 0.8s var(--ease-out); }
.anim-slide { opacity: 0; transform: translateY(40px); }
.anim-slide.visible { opacity: 1; transform: translateY(0); transition: all 1s var(--ease-out); }

/* Scroll reveals */
.reveal-up { opacity: 0; transform: translateY(50px); transition: all 1s var(--ease-out); }
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 1s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 1s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* --- Stagger children --- */
.amenities-scroll .amenity-card,
.pricing-cards .price-card,
.reviews-track .review-card,
.contact-row .contact-card { opacity: 0; transform: translateY(30px); transition: all 0.7s var(--ease-out); }
.amenities-scroll.visible .amenity-card,
.pricing-cards.visible .price-card,
.reviews-track.visible .review-card,
.contact-row.visible .contact-card { opacity: 1; transform: translateY(0); }
.amenities-scroll.visible .amenity-card:nth-child(1),
.pricing-cards.visible .price-card:nth-child(1),
.reviews-track.visible .review-card:nth-child(1),
.contact-row.visible .contact-card:nth-child(1) { transition-delay: 0s; }
.amenities-scroll.visible .amenity-card:nth-child(2),
.pricing-cards.visible .price-card:nth-child(2),
.reviews-track.visible .review-card:nth-child(2),
.contact-row.visible .contact-card:nth-child(2) { transition-delay: 0.1s; }
.amenities-scroll.visible .amenity-card:nth-child(3),
.pricing-cards.visible .price-card:nth-child(3),
.reviews-track.visible .review-card:nth-child(3),
.contact-row.visible .contact-card:nth-child(3) { transition-delay: 0.2s; }
.amenities-scroll.visible .amenity-card:nth-child(4) { transition-delay: 0.3s; }
.amenities-scroll.visible .amenity-card:nth-child(5) { transition-delay: 0.4s; }
.amenities-scroll.visible .amenity-card:nth-child(6) { transition-delay: 0.5s; }
.amenities-scroll.visible .amenity-card:nth-child(7) { transition-delay: 0.6s; }
.amenities-scroll.visible .amenity-card:nth-child(8) { transition-delay: 0.7s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .amenities-scroll { grid-template-columns: repeat(2, 1fr); }
    .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .price-card-featured { transform: none; }
    .price-card-featured:hover { transform: translateY(-6px); }
    .reviews-track { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100dvh;
        background: rgba(254,252,248,0.97); backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; gap: 32px; padding: 40px;
        transition: right 0.5s var(--ease-out);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }
    .nav-menu.active { right: 0; }
    .nav-links { flex-direction: column; gap: 20px; }
    .nav-links a { font-size: 1.2rem; }
    .nav-cta { align-self: flex-start; }
    .hero { min-height: 100svh; }
    .hero-content { padding-bottom: 0; }
    .title-line { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .hero-stats { gap: 6px; padding: 0 12px 20px; }
    .stat-pill { padding: 8px 12px; font-size: 0.7rem; }
    .stat-pill strong { font-size: 0.9rem; }
    .about-grid, .location-layout { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { order: -1; }
    .stack-float { width: 40%; bottom: -20px; right: -10px; }
    .gallery-mosaic { grid-template-columns: 1fr 1fr; }
    .mosaic-item.mosaic-wide { grid-column: span 2; }
    .amenities-scroll { grid-template-columns: 1fr 1fr; }
    .contact-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .gallery-mosaic { grid-template-columns: 1fr; gap: 10px; }
    .mosaic-item.mosaic-wide { grid-column: span 1; }
    .amenities-scroll { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; align-items: center; }
    .stat-pill { width: 100%; justify-content: center; }
    .distance-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
}
