
    /* ===== BASE STYLES ===== */
    :root {
        /* Gold Theme Colors */
        --gold-light: #e6ebd9;
        --gold-medium: #8f9c68;
        --gold-dark: #1e4b26;
        --gold-darker: #4f2915;
        --gold-accessible: #1e4b26;
        --gold-accent: #b05216;
        --nature-green: #1e4b26;
        --nature-green-dark: #14351a;
        --nature-green-soft: #e6ebd9;
        --brand-gold: #1e4b26;
        --brand-green: #8f9c68;
        --brand-brown: #4f2915;
        --brand-accent: #b05216;
        --brand-black: #1c1917;
        --brand-white: #ffffff;
        --surface-card: #ffffff;
        --surface-card-border: #e7e5e4;
        --surface-card-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
        --surface-card-shadow-hover: 0 20px 36px rgba(17, 24, 39, 0.12);
        
        /* Neutral Colors */
        --neutral-50: #fafaf9;
        --neutral-100: #f5f5f4;
        --neutral-200: #e7e5e4;
        
        /* Neutral Colors */
        --neutral-50: #fafaf9;
        --neutral-100: #f5f5f4;
        --neutral-200: #e7e5e4;
        --neutral-300: #d6d3d1;
        --neutral-400: #a8a29e;
        --neutral-500: #78716c;
        --neutral-600: #57534e;
        --neutral-700: #44403c;
        --neutral-800: #292524;
        --neutral-900: #1c1917;
        
        /* Typography */
        --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        --font-serif: 'Playfair Display', Georgia, serif;
        
        /* Spacing */
        --space-1: 0.25rem;
        --space-2: 0.5rem;
        --space-3: 0.75rem;
        --space-4: 1rem;
        --space-5: 1.5rem;
        --space-6: 2rem;
        --space-8: 3rem;
        --space-10: 4rem;
        --space-12: 6rem;

        /* Luxury Additions */
        --luxury-black: #000000;
        --luxury-white: #ffffff;
        --luxury-tracking: 0.15em;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Global helper: soften letterbox areas for contain-fit images */
    .media-blur-fill {
        position: relative;
        overflow: hidden;
    }

    .media-blur-fill::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--media-blur-url);
        background-size: cover;
        background-position: center;
        filter: blur(14px) brightness(0.7);
        transform: scale(1.08);
        z-index: 0;
        pointer-events: none;
    }

    .media-blur-fill > * {
        position: relative;
        z-index: 1;
    }

    html {
        font-size: 16px;
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-sans);
        line-height: 1.6;
        color: var(--neutral-800);
        background: var(--neutral-50);
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--space-4);
    }

    .section-padding {
        padding: var(--space-10) 0;
    }

    .text-center {
        text-align: center;
    }

    .bg-gold-light {
        background: var(--gold-light);
    }

.text-gold {
    color: var(--brand-gold);
}

/* ===== ANIMATION UTILITIES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 20px rgba(28, 25, 23, 0.16);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 16px 28px rgba(28, 25, 23, 0.2);
    }
}

.reveal {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0ms;
    will-change: auto;
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-title,
    .farm-hero-content h1,
    .dining-hero-title,
    .kids-hero-content h1,
    .glry-hero__title,
    .conference-hero h1 {
        animation: fadeInUp 0.85s ease-out both;
    }

    .hero-subtitle,
    .farm-hero-content p,
    .dining-hero-subtitle,
    .kids-hero-content p,
    .glry-hero__sub,
    .hero-breadcrumb {
        animation: fadeInUp 0.95s ease-out 0.12s both;
    }

    .cta-section .btn-gold {
        animation: softPulse 3.2s ease-in-out infinite;
    }

    .cta-section .btn-gold:hover {
        animation: none;
    }

    /* Hero Entry Animations */
    .hero-fade-in {
        animation: fadeInUp 0.8s ease-out both;
    }

    .hero-fade-in-delayed {
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }
}

/* Luxury Sections */
.bg-luxury-dark {
    background-color: var(--luxury-black) !important;
    color: var(--luxury-white) !important;
}

.bg-luxury-dark .section-title,
.bg-luxury-dark .section-subtitle,
.bg-luxury-dark .farm-title,
.bg-luxury-dark .farm-description,
.bg-luxury-dark .cta-title,
.bg-luxury-dark .cta-subtitle {
    color: var(--luxury-white) !important;
}

.tracking-luxury {
    text-transform: uppercase !important;
    letter-spacing: var(--luxury-tracking) !important;
    font-weight: 700 !important;
}

/* Scrolled state change handled via JS class */
.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--neutral-200);
}

    /* Buttons - WHITE TEXT ON GOLD */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: var(--space-3) var(--space-6);
        font-family: var(--font-sans);
        font-weight: 700;
        text-decoration: none;
        border-radius: 999px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        max-width: 100%;
        line-height: 1.2;
        min-height: 44px;
        box-shadow: 0 8px 16px rgba(28, 25, 23, 0.12);
    }

    .btn-gold {
        background: var(--brand-gold);
        color: white !important;
        border: 2px solid var(--brand-gold);
    }

    .btn-gold:hover {
        background: var(--brand-brown);
        border-color: var(--brand-brown);
        transform: translateY(-2px);
        box-shadow: 0 14px 24px rgba(28, 25, 23, 0.2);
    }

    .btn-outline-gold {
        background: rgba(255, 255, 255, 0.96);
        color: var(--brand-gold);
        border: 2px solid var(--brand-gold);
    }

    .btn-outline-gold:hover {
        background: var(--brand-gold);
        color: white !important;
    }

    .btn-large {
        padding: var(--space-4) var(--space-8);
        font-size: 1.125rem;
    }

    .btn-small {
        padding: var(--space-2) var(--space-4);
        font-size: 0.875rem;
    }

    .nature-icon {
        color: var(--nature-green);
    }

    .nature-icon-bg {
        background: linear-gradient(135deg, var(--nature-green) 0%, var(--nature-green-dark) 100%);
    }

    .nature-icon-bg .nature-icon,
    .nature-icon-bg .fa-seedling,
    .nature-icon-bg .fa-leaf,
    .nature-icon-bg .fa-spa {
        color: #ffffff;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
    }

    .skip-link {
        position: absolute;
        left: var(--space-4);
        top: -56px;
        z-index: 5000;
        background: #ffffff;
        color: var(--gold-accessible);
        border: 2px solid var(--gold-accessible);
        border-radius: 0.5rem;
        padding: 0.5rem 0.875rem;
        text-decoration: none;
        font-weight: 700;
    }

    .skip-link:focus {
        top: var(--space-3);
    }

    :where(a, button, input, select, textarea, summary):focus-visible {
        outline: 3px solid var(--gold-accessible);
        outline-offset: 2px;
    }

    .hero-breadcrumb {
        display: inline-flex;
        flex-wrap: wrap;
        align-items: center;
        gap: var(--space-2);
        margin-bottom: var(--space-4);
        color: rgba(255, 255, 255, 0.95);
        font-size: 0.9rem;
    }

    .hero-breadcrumb a {
        color: #ffffff;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .hero-breadcrumb a:hover,
    .hero-breadcrumb a:focus-visible {
        color: var(--gold-medium);
    }

    /* ===== COMPONENTS STYLES ===== */
    /* Header */

    /* ===== COMPONENTS STYLES ===== */
    /* Header */
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
        border-bottom: 1px solid var(--neutral-200);
        z-index: 3000;
        transition: box-shadow 0.3s ease, background 0.3s ease;
    }

    .main-header.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
        gap: var(--space-4);
        padding: 0 var(--space-5);
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        margin-left: auto;
    }


    /* Logo */
    .logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        overflow: hidden; 
        display: flex;
        align-items: center;
        justify-content: center;
        background: none; 
        font-size: 0; 
    }

    .logo-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    /* Navigation */
    .desktop-nav {
        display: none;
        flex: 1;                   /* fills available centre space */
        min-width: 0;              /* allows shrinking on smaller desktops */
        overflow: hidden;          /* clips if somehow too wide */
    }

    .nav-list {
        display: flex;
        align-items: center;
        justify-content: space-between; /* spread items evenly across the pill */
        flex-wrap: nowrap;
        gap: 0;
        list-style: none;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid var(--neutral-200);
        border-radius: 999px;
        padding: 0.3rem 0.4rem;
        width: 100%;
        min-height: 44px;
        transition: background 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 2px 12px rgba(0,0,0,0.07);
        overflow: hidden;
    }

    .nav-link {
        padding: 0.38rem 0.65rem;
        text-decoration: none;
        color: var(--neutral-800);
        font-weight: 600;
        font-size: 0.8rem;
        white-space: nowrap;
        border-radius: 999px;
        transition: all 0.25s ease;
        display: flex;
        align-items: center;
        gap: 0.25rem;
        flex-shrink: 0;
        line-height: 1.2;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--gold-accessible);
        background: var(--gold-light);
    }

    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown.is-open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 50%;
        min-width: 230px;
        background: white;
        border-radius: 0.5rem;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, -10px);
        transition: all 0.3s ease;
        z-index: 3200;
        padding: var(--space-2) 0;
        text-align: center;
    }

    .nav-book-cta {
        padding: 0.38rem 0.72rem !important;
        border-radius: 999px !important;
        font-size: 0.8rem !important;
        line-height: 1.1;
        box-shadow: 0 8px 16px rgba(156, 126, 46, 0.18);
    }

    .dropdown-menu a {
        display: block;
        padding: var(--space-3) var(--space-4);
        text-decoration: none;
        color: var(--neutral-700);
        transition: all 0.3s ease;
    }

    .dropdown-menu a:hover {
        background: var(--gold-light);
        color: var(--gold-accessible);
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 3px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid var(--neutral-300);
        border-radius: 999px;
        cursor: pointer;
        padding: 0.6rem;
        z-index: 1001;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        transition: all 0.25s ease;
    }

    .mobile-menu-toggle:hover {
        border-color: var(--gold-medium);
        transform: translateY(-1px);
    }

    .mobile-menu-toggle span {
        width: 16px;
        height: 2px;
        background: var(--neutral-700);
        border-radius: 2px;
        transition: all 0.3s ease;
    }


    /* Mobile Menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 1999;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }


    /* Mobile Menu Overlay with Premium Blur */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        z-index: 1999;
        transition: all 0.4s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(400px, 92vw);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
        z-index: 2000;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        visibility: hidden;
        display: flex;
        flex-direction: column;
        max-height: 100vh;
        max-height: 100dvh; /* Dynamic viewport height for modern browsers */
    }

    .mobile-menu.active {
        transform: translateX(0);
        visibility: visible;
        box-shadow: -15px 0 45px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: var(--space-4) var(--space-5); /* More compact */
        border-bottom: 1px solid rgba(0,0,0,0.06);
        flex-shrink: 0; /* Don't compress header */
    }

    .mobile-menu-close {
        background: rgba(0,0,0,0.04);
        border: none;
        border-radius: 50%;
        color: var(--neutral-800);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background: rgba(0,0,0,0.08);
        transform: rotate(90deg);
    }

    .mobile-nav-list {
        list-style: none;
        padding: var(--space-4) var(--space-5); /* Compact */
        flex-grow: 1;
        overflow-y: visible;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.65rem 0; /* Tightened */
        text-decoration: none;
        color: var(--neutral-800);
        font-family: var(--font-serif);
        font-weight: 600;
        font-size: 1.1rem; /* Compact */
        border-bottom: 1px solid rgba(0,0,0,0.04);
        text-align: left;
        transition: color 0.3s ease;
    }
    
    .mobile-nav-link:hover {
        color: var(--gold-dark);
    }
    
    .mobile-nav-link i {
        font-size: 0.9rem;
        color: var(--gold-medium);
        transition: transform 0.3s ease;
    }
    
    .mobile-book-now {
        margin-top: var(--space-6);
        text-align: center;
    }
    
    .mobile-book-now .btn {
        width: 100%;
        padding: var(--space-4);
        font-size: 1.1rem;
        box-shadow: 0 8px 24px rgba(156, 126, 46, 0.25);
    }

@media (max-width: 900px) and (orientation: landscape) {
    .mobile-menu {
        width: min(420px, 72vw);
    }

    .mobile-nav-link {
        font-size: 0.85rem;
        padding: var(--space-2) 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .mobile-menu {
        width: min(420px, 70vw);
    }

    .mobile-nav-link {
        font-size: 0.95rem;
        padding: var(--space-3) 0;
    }
}

@media (max-width: 520px) {
    .mobile-nav-link {
        font-size: 0.9rem;
    }
}

    .mobile-dropdown {
        padding-left: var(--space-4);
        padding-right: var(--space-2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        opacity: 0;
    }

    .mobile-dropdown.active {
        max-height: 600px;
        opacity: 1;
        margin-bottom: var(--space-2);
    }

    .mobile-dropdown a {
        display: block;
        padding: var(--space-3) 0;
        text-decoration: none;
        color: var(--neutral-600);
        transition: all 0.3s ease;
        text-align: center;
    }

    .mobile-dropdown a:hover {
        color: var(--gold-dark);
        padding-left: 0;
    }

    .mobile-contact {
        padding: var(--space-5);
        border-top: 1px solid var(--neutral-200);
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: var(--space-3);
        margin-bottom: var(--space-3);
        color: var(--neutral-600);
    }

    .contact-item i {
        color: var(--gold-dark);
        width: 20px;
    }

    /* Main Content */
    .main-content {
        min-height: calc(100vh - 400px);
        padding-top: 80px;
    }

    /* ===== HOME PAGE STYLES - IMPROVED UX ===== */
    /* Hero Section - IMPROVED */
    .hero-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: var(--neutral-900);
        color: white;
        text-align: center;
        padding: var(--space-8) 0; /* Changed padding config */
        margin-top: -80px;
        padding-top: calc(80px + var(--space-4));
      overflow: hidden;
    }

    .hero-slider {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        overflow: hidden;
        opacity: 0;
        transition: opacity 0.8s ease;
        will-change: opacity;
        background: var(--neutral-900);
    }

    .hero-slide picture {
        position: relative;
        z-index: 1;
        display: block;
        width: 100%;
        height: 100%;
    }

    .hero-slide.is-active {
        opacity: 1;
        z-index: 2;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* CHANGED specifically to fix mobile gap/aspect ratio issues */
        object-position: center;
        transition: transform 0.8s ease;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, 
            rgba(28, 25, 23, 0.48) 0%, 
            rgba(41, 37, 36, 0.6) 100%); /* slightly darker since we removed blur base */
        z-index: 3;
        pointer-events: none;
        transition: background 0.35s ease, opacity 0.35s ease;
    }

    /* Hero Navigation Buttons added for usability */
    .hero-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        z-index: 10;
        display: flex;
        justify-content: space-between;
        padding: 0 var(--space-4);
        pointer-events: none;
    }

    .hero-nav-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(28, 25, 23, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: auto;
        transition: all 0.3s ease;
        font-size: 1.25rem;
        backdrop-filter: blur(4px);
    }

    @media (min-width: 768px) {
        .hero-nav {
            padding: 0 var(--space-8);
        }
        .hero-nav-btn {
            width: 56px;
            height: 56px;
            font-size: 1.5rem;
        }
    }

    .hero-nav-btn:hover, .hero-nav-btn:focus-visible {
        background: var(--gold-medium);
        border-color: var(--gold-medium);
        transform: scale(1.05);
        outline: none;
    }

    .hero-content {
        max-width: min(720px, calc(100% - 2rem));
        margin: 0;
        position: relative;
        z-index: 2;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        text-align: left;
        margin-top: auto;
        margin-bottom: var(--space-6);
        padding: var(--space-4) var(--space-5);
        border-radius: 1.25rem;
        background: transparent;
        backdrop-filter: blur(10px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
        transition:
            opacity 0.35s ease,
            transform 0.35s ease,
            max-width 0.35s ease,
            padding 0.35s ease,
            background 0.35s ease,
            box-shadow 0.35s ease;
    }

    .hero-section .container {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        min-height: inherit;
        padding: var(--space-6) var(--space-4);
    }

    /* Additional Hero media query for phones for non-demanding view */
    @media (max-width: 768px) {
        .hero-section {
            min-height: auto;
            align-items: flex-end;
            padding-bottom: var(--space-4);
        }
        
        .hero-section .container {
            padding: var(--space-4) var(--space-3) 0 var(--space-3);
            margin-top: calc(var(--hero-mobile-height, 60vh) - 100px);
        }
        
        .hero-content {
            border-radius: 1rem;
            padding: var(--space-5) var(--space-4);
            margin-bottom: 0;
            margin-top: auto;
            transform: translateY(10px);
            background: rgba(255, 255, 255, 0.96); 
            color: var(--neutral-900);
            text-align: center;
        }

        .hero-section.hero-content-intro .hero-content,
        .hero-section:hover .hero-content,
        .hero-section:focus-within .hero-content,
        .hero-section.hero-content-visible .hero-content {
            background: rgba(255, 255, 255, 0.98); 
            padding: var(--space-5) var(--space-4);
            transform: translateY(0);
        }
        
        .hero-title {
            color: var(--neutral-900) !important;
            font-size: 1.8rem !important;
            text-shadow: none !important;
        }
        
        .hero-subtitle {
            color: var(--neutral-700) !important;
            font-size: 1rem !important;
            text-shadow: none !important;
            margin-bottom: var(--space-5) !important;
        }
        
        .hero-actions {
            margin-top: 0;
        }
    }

    .hero-section.hero-content-hidden .hero-content {
        opacity: 0;
        transform: translateY(16px);
        pointer-events: none;
    }

    .hero-section.hero-content-hidden .hero-title,
    .hero-section.hero-content-hidden .hero-subtitle,
    .hero-section.hero-content-hidden .hero-actions {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        margin: 0;
        transform: translateY(10px);
        pointer-events: none;
    }

    .hero-section.hero-content-intro .hero-content,
    .hero-section:hover .hero-content,
    .hero-section:focus-within .hero-content,
    .hero-section.hero-content-visible .hero-content {
        max-width: min(720px, calc(100% - 2rem));
        padding: var(--space-4) var(--space-5);
        background: transparent;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
    }

    .hero-section.hero-content-intro .hero-subtitle,
    .hero-section.hero-content-intro .hero-actions,
    .hero-section:hover .hero-subtitle,
    .hero-section:hover .hero-actions,
    .hero-section:focus-within .hero-subtitle,
    .hero-section:focus-within .hero-actions,
    .hero-section.hero-content-visible .hero-subtitle,
    .hero-section.hero-content-visible .hero-actions {
        opacity: 1;
        max-height: 320px;
        overflow: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .hero-section:hover .hero-overlay,
    .hero-section:focus-within .hero-overlay,
    .hero-section.hero-content-visible .hero-overlay,
    .hero-section.hero-content-intro .hero-overlay {
        background: linear-gradient(135deg,
            rgba(28, 25, 23, 0.48) 0%,
            rgba(41, 37, 36, 0.6) 100%);
    }

     @media (prefers-reduced-motion: reduce) {
        .hero-slide {
            transition: none;
            opacity: 0;
        }

        .hero-slide:first-child {
            opacity: 1;
        }

        .floating-whatsapp {
            animation: none;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        html {
            scroll-behavior: auto;
        }

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }

.hero-title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: var(--space-4);
    color: #fff;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: var(--space-8);
        opacity: 0.9;
        transition:
            opacity 0.28s ease,
            transform 0.28s ease,
            max-height 0.28s ease,
            margin 0.28s ease;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        margin-bottom: var(--space-8);
        margin-top: var(--space-4) ;
        transition:
            opacity 0.28s ease,
            transform 0.28s ease,
            max-height 0.28s ease,
            margin 0.28s ease;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
        margin-top: var(--space-8);
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        gap: var(--space-1);
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: var(--gold-medium);
    }

    .stat-label {
        font-size: 0.875rem;
        opacity: 0.8;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Highlights - IMPROVED */
    .highlights-section {
        padding: var(--space-12) 0;
        background: var(--neutral-100);
    }

    .highlights-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .highlight-card {
        background: var(--surface-card);
        border-radius: 1.25rem;
        padding: var(--space-6);
        text-align: center;
        box-shadow: var(--surface-card-shadow);
        transition: all 0.3s ease;
        border: 1px solid var(--surface-card-border);
    }

    .highlight-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--surface-card-shadow-hover);
        border-color: var(--gold-medium);
    }

    .highlight-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, var(--gold-medium) 0%, var(--brand-brown) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto var(--space-4);
        color: white;
        font-size: 1.5rem;
    }

    .highlight-card h3 {
        font-size: 1.25rem;
        margin-bottom: var(--space-2);
        color: var(--neutral-900);
        font-weight: 600;
    }

    .highlight-card p {
        color: var(--neutral-600);
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    /* Services - IMPROVED */
    .services-section {
        padding: var(--space-12) 0;
        background: white;
    }

    .section-header {
        text-align: center;
        margin-bottom: var(--space-10);
    }

    .section-title {
        font-family: var(--font-serif);
        font-weight: 600;
        font-size: clamp(1.6rem, 4vw, 2.5rem);
        color: var(--neutral-900);
        margin-bottom: var(--space-4);
    }

    .section-subtitle {
        font-size: 1.125rem;
        color: var(--neutral-600);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

/* Premium image showcase layout */
.image-showcase {
    display: grid;
    gap: var(--space-4);
    align-items: stretch;
}

.image-showcase-main,
.image-showcase-tiles {
    min-width: 0;
}

.image-showcase-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
}

@media (min-width: 900px) {
    .image-showcase {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
        align-items: stretch;
    }
}

@media (max-width: 420px) {
    .image-showcase-tiles {
        grid-template-columns: 1fr;
    }
}

    .service-card {
        background: var(--surface-card);
        border-radius: 1.25rem;
        overflow: hidden;
        box-shadow: var(--surface-card-shadow);
        transition: all 0.3s ease;
        border: 1px solid var(--surface-card-border);
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--surface-card-shadow-hover);
        border-color: var(--gold-medium);
    }

    .service-image {
        height: 180px;
        background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-dark) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 3rem;
    }

    .service-content {
        padding: var(--space-6);
        display: flex;
        flex-direction: column;
        height: calc(100% - 180px);
    }

    .service-title {
        font-family: var(--font-serif);
        font-weight: 600;
        font-size: 1.5rem;
        color: var(--neutral-900);
        margin-bottom: var(--space-3);
    }

    .service-description {
        color: var(--neutral-600);
        margin-bottom: var(--space-6);
        font-size: 1rem;
        line-height: 1.6;
        flex-grow: 1;
    }

    /* Family Section - IMPROVED */
    .family-section {
        padding: var(--space-12) 0;
        background: var(--neutral-50);
    }

    .family-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-8);
        align-items: center;
    }

    .family-image {
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        height: 400px;
        background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-dark) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 4rem;
    }

    .family-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-6);
        margin: var(--space-8) 0;
    }

    .family-feature {
        display: flex;
        align-items: flex-start;
        gap: var(--space-4);
        padding: var(--space-4);
        background: white;
        border-radius: 0.75rem;
        border: 1px solid var(--neutral-200);
        transition: all 0.3s ease;
    }

    .family-feature:hover {
        transform: translateX(8px);
        border-color: var(--gold-medium);
    }

    .family-feature i {
        color: var(--gold-dark);
        font-size: 1.5rem;
        margin-top: var(--space-1);
        flex-shrink: 0;
    }

    .family-feature h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
        color: var(--neutral-900);
    }

    .family-feature p {
        font-size: 0.9375rem;
        color: var(--neutral-600);
        line-height: 1.5;
    }

    /* CTA Section - IMPROVED */
    .cta-section {
        padding: var(--space-12) 0;
        background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, 
            rgba(196, 167, 71, 0.1) 0%, 
            rgba(156, 126, 46, 0.2) 100%);
    }

    .cta-content {
        position: relative;
        z-index: 2;
    }

    .cta-title {
        font-family: var(--font-serif);
        font-weight: 600;
        font-size: 2.5rem;
        margin-bottom: var(--space-4);
        color: #ffffff;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
    }

    .cta-subtitle {
        font-size: 1.125rem;
        margin-bottom: var(--space-8);
        color: rgba(255, 255, 255, 0.94);
        opacity: 1;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
        text-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    }

    .cta-actions {
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        justify-content: center;
        margin-bottom: var(--space-8);
        margin-top: var(--space-4);
    }

    .facility-cta,
    .room-actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-3);
        justify-content: center;
        align-items: stretch;
        margin-top: var(--space-4);
    }

    .contact-info {
        margin-top: var(--space-8);
        color: white;
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        align-items: center;
    }

    .contact-info .contact-item {
        display: flex;
        align-items: center;
        gap: var(--space-3);
        color: white;
    }

    .contact-info .contact-item i {
        color: var(--gold-medium);
    }

    /* Footer */
    .main-footer {
        background: var(--neutral-900);
        color: var(--neutral-300);
        padding: var(--space-10) 0 var(--space-6);
        margin-top: var(--space-10);
        
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-8);
        margin-bottom: var(--space-8);
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: var(--space-3);
        margin-bottom: var(--space-4);
        color: white;
    }

    .footer-logo-mark {
        width: 74px;
        height: 74px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        padding: 0.45rem;
        border-radius: 1.2rem;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
    }

    .footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.375rem;
    }

    .footer-brand-name {
        font-family: var(--font-serif);
        font-size: 1.35rem;
        font-weight: 700;
        line-height: 1.05;
        color: white;
    }

    .footer-brand-tag {
        color: var(--neutral-300);
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 0.02em;
    }

    .footer-logo i {
        font-size: 2rem;
        color: var(--gold-medium);
    }

    .footer-logo h3 {
        font-family: var(--font-serif);
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .footer-description {
        margin-bottom: var(--space-5);
        line-height: 1.7;
        font-size: 0.9375rem;
    }

    /* Social Links - IMPROVED */
.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--neutral-800);
    border-radius: 50%;
    color: white;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    text-decoration: none !important;
    border: 1px solid transparent;
    font-size: 1.05rem;
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.18);
    will-change: transform;
}

.social-links a:hover {
    filter: brightness(1.08);
    transform: translateY(-3px) scale(1.04);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.25), 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.social-links a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22), 0 10px 20px rgba(0, 0, 0, 0.22);
}

/* Platform colors for stronger visibility */
.social-links a[aria-label="Facebook"] {
    background: #1877F2;
}

.social-links a[aria-label="Instagram"] {
    background: #E4405F;
}

.social-links a[aria-label="tiktok"] {
    background: #0b0b0b;
}

.social-links a[aria-label="TikTok"] {
    background: #0b0b0b;
}

.social-links a[aria-label="LinkedIn"] {
    background: #0A66C2;
}

.social-links a[aria-label="WhatsApp"] {
    background: #25D366;
}

/* Brand colors on hover */
.social-links a[aria-label="Facebook"]:hover {
    border-color: #1877F2;
}

.social-links a[aria-label="Instagram"]:hover {
    border-color: #E4405F;
}

.social-links a[aria-label="tiktok"]:hover {
    border-color: #69C9D0;
}

.social-links a[aria-label="TikTok"]:hover {
    border-color: #69C9D0;
}

.social-links a[aria-label="LinkedIn"]:hover {
    border-color: #0A66C2;
}

.social-links a[aria-label="WhatsApp"]:hover {
    border-color: #25D366;
}

    .footer-col h3,
    .footer-col h4 {
        color: white;
        margin-bottom: var(--space-4);
        font-size: 1.125rem;
        font-weight: 600;
    }

    .footer-links {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem 1.5rem;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-links a {
        color: var(--neutral-300);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9375rem;
    }

.footer-links a:hover {
    color: var(--gold-medium);
    padding-left: var(--space-2);
}

.faq-section {
    background: linear-gradient(180deg, #fff 0%, #fbf7ef 100%);
}

.faq-list {
    display: grid;
    gap: var(--space-4);
    max-width: 920px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: white;
    border: 1px solid rgba(196, 167, 71, 0.22);
    border-radius: 1.25rem;
    box-shadow: 0 14px 28px rgba(28, 25, 23, 0.08);
    overflow: hidden;
}

.faq-accordion-item[open] {
    border-color: rgba(156, 126, 46, 0.42);
    box-shadow: 0 18px 34px rgba(28, 25, 23, 0.12);
}

.faq-accordion-question {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 1.2rem 3.4rem 1.2rem 1.35rem;
    font-family: var(--font-serif);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--neutral-900);
}

.faq-accordion-question::-webkit-details-marker {
    display: none;
}

.faq-accordion-question::after {
    content: "+";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-light);
    color: var(--gold-darker);
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-accordion-item[open] .faq-accordion-question::after {
    content: "-";
}

.faq-accordion-answer {
    padding: 0 1.35rem 1.25rem;
    color: var(--neutral-700);
    line-height: 1.75;
    font-size: 0.98rem;
}

.faq-accordion-answer p {
    margin: 0;
}

.copy-measure-wide {
    max-width: min(980px, 100%);
    margin: 0 auto;
    text-align: center;
}

.copy-measure-wide .section-subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-6) var(--space-4);
    }

    .footer-grid .footer-col:first-child,
    .footer-grid .footer-col:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .copy-measure-wide {
        text-align: left;
    }

    .copy-measure-wide .section-subtitle {
        font-size: 1rem;
        line-height: 1.8;
    }
}

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: var(--space-3);
        align-items: flex-start;
    }

    .main-footer .contact-item {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: flex-start;
        width: 100%;
        text-align: left;
    }

    .main-footer .contact-item i {
        margin-top: 2px;
    }

    .main-footer .contact-item span,
    .main-footer .contact-item a {
        min-width: 0;
        color: var(--neutral-100);
        text-decoration: none;
        overflow-wrap: anywhere;
        word-break: break-word;
        transition: color 0.3s ease;
    }

    .main-footer .footer-contact-email {
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: normal;
        letter-spacing: -0.01em;
    }

    .main-footer .contact-item a:hover,
    .main-footer .contact-item a:focus-visible {
        color: var(--gold-medium);
    }

    .newsletter-form .input-group {
        display: flex;
        gap: var(--space-2);
        margin-top: var(--space-3);
    }

    .newsletter-form input {
        flex: 1;
        padding: var(--space-3);
        border: 1px solid var(--neutral-700);
        border-radius: 0.5rem;
        background: var(--neutral-800);
        color: white;
        font-size: 0.9375rem;
    }

    .newsletter-form input::placeholder {
        color: var(--neutral-500);
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
        text-align: center;
        padding-top: var(--space-6);
        border-top: 1px solid var(--neutral-800);
        font-size: 0.875rem;
    }

    .footer-links-bottom {
        display: flex;
        gap: var(--space-4);
    }

    .footer-links-bottom a {
        color: var(--neutral-400);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.875rem;
    }

    .footer-links-bottom a:hover {
        color: var(--gold-medium);
    }

    .savannah-strip {
        margin-top: var(--space-3);
        padding-top: 0;
        display: flex;
        justify-content: center;
        gap: 1.1rem;
        color: #8ec97a;
        opacity: 0.88;
        font-size: 1rem;
        flex-wrap: wrap;
    }

    .savannah-strip i:nth-child(3n) {
        color: #6da75e;
    }

    /* Back to Top */
    .back-to-top {
        position: fixed;
        bottom: var(--space-6);
        right: var(--space-6);
        width: 48px;
        height: 48px;
        background: var(--gold-dark);
        color: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: var(--gold-darker);
        transform: translateY(-3px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .floating-whatsapp {
        position: fixed;
        left: var(--space-5);
        bottom: var(--space-6);
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #25d366;
        color: white;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 1.6rem;
        box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
        z-index: 100;
        transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
        animation: whatsapp-float 3.2s ease-in-out infinite;
        overflow: visible;
    }

    .floating-whatsapp::before {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(230, 213, 165, 0.68) 42%, rgba(230, 213, 165, 0) 72%);
        opacity: 0;
        transform: scale(0.86);
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: -1;
    }

    .floating-whatsapp:hover {
        transform: translateY(-4px) scale(1.12);
        box-shadow: 0 20px 34px rgba(37, 211, 102, 0.48);
        filter: saturate(1.08);
    }

    .floating-whatsapp:hover::before {
        opacity: 1;
        transform: scale(1.16);
    }

    .floating-whatsapp:focus-visible {
        outline: 3px solid #ffffff;
        outline-offset: 2px;
    }

    @keyframes whatsapp-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
        outline: 3px solid var(--gold-accessible);
        outline-offset: 3px;
        box-shadow: 0 0 0 2px #ffffff;
    }

    .reviews-slider {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: var(--space-3);
    }

    .reviews-viewport {
        overflow: hidden;
        border-radius: 1rem;
    }

    .reviews-track {
        display: flex;
        transition: transform 0.55s ease;
    }

    .review-card {
        min-width: 100%;
        background: white;
        border: 1px solid var(--gold-light);
        border-radius: 1rem;
        padding: var(--space-6);
        box-shadow: 0 10px 25px rgba(28, 25, 23, 0.08);
        text-align: center;
    }

    .review-nav {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid var(--neutral-300);
        background: white;
        color: var(--neutral-700);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .review-nav:hover {
        background: var(--gold-dark);
        border-color: var(--gold-dark);
        color: white;
    }

    .reviews-dots {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        gap: 0.4rem;
        margin-top: var(--space-3);
    }

    .review-dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        border: 1px solid var(--neutral-500);
        background: var(--neutral-500);
        cursor: pointer;
        transition: transform 0.25s ease, background 0.25s ease;
    }

    .review-dot.active {
        background: var(--gold-dark);
        transform: scale(1.2);
    }

    .review-stars {
        font-size: 1.125rem;
        color: var(--gold-dark);
        letter-spacing: 0.1rem;
        margin-bottom: var(--space-3);
    }

    .review-text {
        color: var(--neutral-700);
        line-height: 1.7;
        margin-bottom: var(--space-4);
    }

    .review-author {
        font-weight: 700;
        color: var(--neutral-900);
    }

    .mobile-swipe-row {
        display: flex;
        overflow-x: auto;
        gap: var(--space-4);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

.mobile-swipe-row::-webkit-scrollbar {
    display: none;
}

/* Reusable toast notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: #1f7a43;
}

.notification-error {
    background: #b42318;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
}

/* Skip layout/paint work for off-screen card-heavy sections */
/* Outdoor Events Page */
.booking-form {
    background: white;
    border-radius: 1rem;
    padding: var(--space-6);
    box-shadow: var(--surface-card-shadow);
    border: 1px solid var(--neutral-200);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

.booking-form-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.booking-form label {
    font-weight: 600;
    color: var(--neutral-800);
    font-size: 0.9375rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--neutral-300);
    border-radius: 0.75rem;
    background: white;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--neutral-800);
    transition: all 0.25s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.booking-form textarea {
    resize: vertical;
    min-height: 120px;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: var(--neutral-600);
    opacity: 1;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(196, 167, 71, 0.2);
}

.booking-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold-dark) 50%),
        linear-gradient(135deg, var(--gold-dark) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 2.5rem;
}

.outdoor-feature-list {
    list-style: none;
    margin-bottom: var(--space-5);
    display: grid;
    gap: var(--space-2);
}

.outdoor-feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--neutral-800);
}

.outdoor-feature-list i {
    color: var(--nature-green);
}

.outdoor-note {
    border-left: 4px solid var(--gold-dark);
    background: var(--gold-light);
    border-radius: 0.5rem;
    padding: var(--space-3) var(--space-4);
    margin: var(--space-3) 0 var(--space-5);
}

.outdoor-form-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.outdoor-form-actions {
    text-align: center;
    margin-top: var(--space-6);
}

.service-image-photo {
    padding: 0;
    overflow: hidden;
}

.service-image-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.service-card:hover .service-image-photo img {
    transform: scale(1.03);
}

.outdoor-highlights-grid {
    max-width: 1080px;
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
}

.outdoor-highlights-grid .highlight-card {
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.outdoor-highlight-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

@media (max-width: 767px) {
    .outdoor-highlights-grid {
        display: grid;
        grid-template-columns: 1fr;
        overflow: visible;
        gap: var(--space-4);
    }

    .outdoor-highlights-grid .highlight-card {
        min-width: 0;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (min-width: 640px) {
    .outdoor-highlights-grid {
        grid-template-columns: repeat(2, minmax(260px, 320px));
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .outdoor-highlights-grid {
        grid-template-columns: repeat(3, minmax(260px, 320px));
        justify-content: center;
    }
}

@media (max-width: 767px) {
        .highlights-grid,
        .services-grid,
        .family-features {
            display: flex;
            overflow-x: auto;
            gap: var(--space-4);
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
            padding-bottom: var(--space-2);
        }

        .highlights-grid::-webkit-scrollbar,
        .services-grid::-webkit-scrollbar,
        .family-features::-webkit-scrollbar {
            display: none;
        }

        .highlights-grid .highlight-card,
        .services-grid .service-card,
        .family-features .family-feature {
            min-width: min(84vw, 320px);
            scroll-snap-align: start;
        }
    }

    /* Responsive Design - MOBILE FIRST */
    @media (min-width: 640px) {
        .hero-title {
            font-size: 3rem;
        }
        
        .hero-actions {
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .highlights-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .family-features {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .cta-actions {
            flex-direction: row;
        }
    }

     @media (max-width: 640px) {
        .container {
            padding: 0 var(--space-3);
        }

        .hero-section {
            min-height: 0;
            height: auto;
            padding-top: 74px;
            padding-bottom: var(--space-3);
        }

        .hero-stats {
            gap: var(--space-3);
        }

        .hero-content {
            opacity: 1;
            transform: none;
            pointer-events: auto;
            max-width: calc(100% - 1rem);
            margin-bottom: 0;
            padding: 0.9rem 0.9rem 1rem;
            border-radius: 0.85rem;
            backdrop-filter: none;
            box-shadow: 0 14px 26px rgba(28, 25, 23, 0.1);
        }

        .hero-overlay {
            display: none;
        }

        .hero-title {
            font-size: 1.3rem;
            line-height: 1.08;
            margin-bottom: 0.45rem;
        }

        .hero-subtitle {
            font-size: 0.9rem;
            line-height: 1.42;
            margin-bottom: var(--space-3);
            max-width: none;
        }

        .hero-actions .btn {
            min-height: 42px;
            padding: 0.72rem 0.95rem;
            font-size: 0.9rem;
        }

        .service-image {
            height: 150px;
        }

        .cta-actions,
        .facility-cta,
        .room-actions,
        .hero-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .cta-actions .btn,
        .facility-cta .btn,
        .room-actions .btn,
        .hero-actions .btn {
            width: 100%;
            justify-content: center;
        }

        .footer-links-bottom {
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--space-3);
        }

        .newsletter-form .input-group {
            flex-direction: column;
        }

        .newsletter-form .input-group .btn {
            width: 100%;
        }

        .reviews-slider {
            grid-template-columns: 1fr;
        }

        .footer-logo-mark {
            width: 62px;
            height: 62px;
        }

        .footer-brand-name {
            font-size: 1.18rem;
        }

        .footer-brand-tag {
            font-size: 0.78rem;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: var(--space-5);
        }

        .footer-links {
            grid-template-columns: 1fr 1fr;
            gap: 0.45rem 0.8rem;
        }

        .footer-col:first-child {
            text-align: center;
        }

        .footer-col:first-child .footer-logo {
            justify-content: center;
        }

        .footer-col:first-child .social-links {
            justify-content: center;
        }

        .footer-description {
            max-width: 34rem;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-col:not(:first-child) {
            text-align: left;
        }

        .main-footer .contact-item {
            max-width: 100%;
        }

        .review-nav {
            display: none;
        }

        .floating-whatsapp {
            left: var(--space-3);
            bottom: var(--space-4);
            width: 48px;
            height: 48px;
            font-size: 1.45rem;
        }

        .room-actions .btn {
            width: 100%;
        }
    }


    @media (min-width: 1100px) {

        .main-header {
            padding-top: 8px; /* Breathing room from browser top */
        }

        .header-content {
            height: 62px;
        }

        .header-logo-text {
            display: none !important;
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            min-width: 0;
            overflow: visible;
        }

        .mobile-menu-toggle {
            display: none;
        }

        .hero-title {
            font-size: 3.5rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
        }

        .stat-number {
            font-size: 2.5rem;
        }

        .section-title {
            font-size: 3rem;
        }

        .family-content {
            grid-template-columns: 1fr 1fr;
            gap: var(--space-12);
        }

        .family-image {
            height: 500px;
            order: 2;
        }

        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }
    }

    @media (min-width: 1024px) {
        .hero-title {
            font-size: 4rem;
        }
        
        .highlights-grid {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .services-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .footer-grid {
            grid-template-columns: minmax(240px, 1.15fr) minmax(180px, 0.9fr) minmax(270px, 1.1fr) minmax(220px, 1fr);
        }
        
        .cta-title {
            font-size: 3rem;
        }
        
        .hero-stats {
            gap: var(--space-8);
        }
    }

    @media (max-width: 1023px) {
        .main-footer .footer-contact-email {
            white-space: normal;
            overflow-wrap: anywhere;
            word-break: break-word;
        }
    }

    @media (max-width: 767px) {
        .highlights-grid.outdoor-highlights-grid {
            display: grid !important;
            grid-template-columns: 1fr;
            overflow: visible !important;
            scroll-snap-type: none;
            padding-bottom: 0;
        }
    }

    /* Phase 16: Booking Guidance Block */
    .booking-guidance-block {
        background-color: var(--gold-light);
        padding: var(--space-md);
        border-left: 4px solid var(--gold-medium);
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        margin: var(--space-md) 0 var(--space-lg);
    }

    .booking-guidance-block h3 {
        font-family: var(--font-serif);
        font-size: 1.15rem;
        color: var(--gold-dark);
        margin-bottom: var(--space-xs);
    }

    .booking-guidance-block h3 i {
        margin-right: 0.3rem;
    }

    .booking-guidance-block p {
        font-size: 0.95rem;
        color: var(--neutral-700);
        margin-bottom: 0;
        line-height: 1.6;
    }

    /* Phase 17: Fresh Dining Banner */
    .fresh-dining-banner {
        background: var(--neutral-50);
        border: 1px solid var(--neutral-200);
        border-radius: var(--radius-lg);
        padding: var(--space-xl);
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        box-shadow: var(--shadow-sm);
    }

    .fresh-dining-banner h2 {
        font-family: var(--font-serif);
        color: var(--gold-dark);
        font-size: 1.8rem;
        margin-bottom: var(--space-sm);
    }

    .fresh-dining-banner h2 i {
        margin-right: 0.5rem;
    }

    .fresh-dining-banner p {
        color: var(--neutral-700);
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* Phase 18: Growing With You (Future Facilities) */
    .growing-section {
        border-top: 1px solid var(--neutral-200);
        background:
            radial-gradient(circle at top left, rgba(143, 156, 104, 0.12), transparent 32%),
            linear-gradient(180deg, #fafaf7 0%, #f3f2eb 100%);
    }

    .growing-section-shell {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .growing-section-intro {
        display: grid;
        gap: var(--space-4);
    }

    .growing-section-header {
        max-width: 44rem;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .growing-section-kicker {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.9rem;
        padding: 0.35rem 0.9rem;
        border-radius: 999px;
        background: rgba(230, 235, 217, 0.95);
        border: 1px solid rgba(143, 156, 104, 0.34);
        color: var(--gold-darker);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .growing-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .growing-item {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: 1.2rem;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(143, 156, 104, 0.24);
        border-radius: 1.4rem;
        box-shadow: 0 16px 30px rgba(17, 24, 39, 0.06);
        transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    }

    .growing-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 36px rgba(17, 24, 39, 0.1);
        border-color: rgba(143, 156, 104, 0.45);
    }

    .growing-item-topline {
        display: flex;
        justify-content: flex-start;
    }

    .growing-item-status {
        display: inline-flex;
        align-items: center;
        padding: 0.34rem 0.75rem;
        border-radius: 999px;
        background: rgba(244, 232, 194, 0.74);
        color: #725019;
        font-size: 0.74rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .growing-item-icon {
        width: 3.25rem;
        height: 3.25rem;
        border-radius: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-dark) 100%);
        box-shadow: 0 12px 24px rgba(30, 75, 38, 0.18);
        flex-shrink: 0;
    }

    .growing-item i {
        color: #fff;
        font-size: 1.35rem;
    }

    .growing-item-content {
        display: grid;
        gap: 0.45rem;
        min-width: 0;
    }

    .growing-item-title {
        font-family: var(--font-serif);
        font-size: 1.35rem;
        line-height: 1.1;
        color: var(--neutral-900);
    }

    .growing-item-copy {
        margin: 0;
        color: var(--neutral-700);
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .growing-section-note {
        max-width: 38rem;
        margin: 0;
        text-align: left;
        color: var(--neutral-600);
        font-size: 0.95rem;
        line-height: 1.75;
    }

    @media (min-width: 768px) {
        .growing-section-shell {
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
            align-items: start;
            gap: var(--space-8);
        }

        .growing-item {
            padding: 1.5rem 1.35rem;
        }

        .growing-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .growing-item:last-child {
            grid-column: span 2;
        }

        .growing-item:last-child .growing-item-copy {
            max-width: 32rem;
        }
    }

    @media (min-width: 1024px) {
        .growing-section-shell {
            grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
        }

        .growing-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .growing-item:last-child {
            grid-column: auto;
        }
    }

    /* ===== RESPONSIVE HERO FIXES ===== */
    @media (max-width: 767px) {
        .hero-section {
            display: block;
            min-height: 0;
            height: auto;
            margin-top: 0;
            padding: 78px 0 var(--space-4);
        }

        .hero-slider {
            position: relative;
            inset: auto;
            z-index: 0;
            width: 100%;
            min-height: clamp(260px, 58vw, 420px);
            max-height: 62svh;
            aspect-ratio: 4 / 3;
            line-height: 0;
            overflow: hidden;
            background: var(--neutral-900);
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            display: none;
            opacity: 1;
            transition: none;
            width: 100%;
            height: 100%;
        }

        .hero-slide.is-active {
            display: block;
        }

        .hero-slide::before,
        .hero-overlay {
            display: none;
        }

        .hero-slide picture,
        .hero-picture {
            display: block;
            width: 100%;
            height: 100%;
        }

        .hero-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .hero-section .container {
            min-height: 0;
            display: block;
            margin-top: 0;
            padding-top: var(--space-3);
        }

        .hero-content,
        .hero-section.hero-content-intro .hero-content,
        .hero-section:hover .hero-content,
        .hero-section:focus-within .hero-content,
        .hero-section.hero-content-visible .hero-content {
            opacity: 1;
            transform: none !important;
            pointer-events: auto;
            background: rgba(255, 255, 255, 0.98);
            color: var(--neutral-900);
            padding: 0.85rem 0.85rem 1rem; /* More compact */
            max-width: calc(100% - 1rem);
            margin: 0 auto;
            border-radius: 1rem;
            backdrop-filter: none;
            box-shadow: 0 12px 28px rgba(28, 25, 23, 0.12);
        }

        .hero-section.hero-content-hidden .hero-content,
        .hero-section.hero-content-hidden .hero-title,
        .hero-section.hero-content-hidden .hero-subtitle,
        .hero-section.hero-content-hidden .hero-actions {
            opacity: 1;
            transform: none;
            max-height: none;
            overflow: visible;
            pointer-events: auto;
            margin: 0;
        }

        .hero-title {
            font-size: 1.5rem;
            margin-bottom: 0.45rem;
            color: var(--neutral-900);
            text-shadow: none;
        }

        .hero-subtitle {
            font-size: 0.96rem;
            line-height: 1.5;
            margin-bottom: var(--space-3);
            color: var(--neutral-700);
            opacity: 1;
        }

        .hero-actions {
            margin-top: var(--space-3);
            margin-bottom: 0;
            gap: var(--space-3);
        }

        .hero-actions .btn {
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .hero-slider {
            min-height: clamp(250px, 66vw, 360px);
            aspect-ratio: 5 / 4;
            border-radius: 0 0 1rem 1rem;
        }

        .hero-nav {
            padding: 0 var(--space-3);
        }

        .hero-nav-btn {
            width: 42px;
            height: 42px;
            font-size: 1.05rem;
        }
    }

/* ============================================================
   THE ZAMAR PROMISE — Homepage identity values grid
   ============================================================ */
.zamar-promise-section {
    background: linear-gradient(180deg, #faf7f0 0%, #f5f0e6 100%);
    border-top: 1px solid rgba(196, 167, 71, 0.18);
    border-bottom: 1px solid rgba(196, 167, 71, 0.18);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.promise-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: var(--space-7) var(--space-6);
    border: 1px solid rgba(196, 167, 71, 0.18);
    border-left: 4px solid var(--gold-medium);
    box-shadow: 0 8px 24px rgba(28, 18, 5, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(28, 18, 5, 0.12);
}

.promise-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: var(--space-4);
    flex-shrink: 0;
}

.promise-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.promise-card p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .promise-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    .promise-card {
        padding: var(--space-5);
    }
}
