
        /* Custom Mockup Hero Design matching the stays page layout */
        .mockup-hero {
            position: relative;
            min-height: 75vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(to bottom, rgba(253,245,230,0.15) 0%, rgba(253,245,230,0.45) 40%, rgba(253,245,230,0.7) 65%, rgba(11,61,51,0.65) 100%), url('../assets/experience-images/dolphin-bay.jpg');
            background-size: cover;
            background-position: center;
            text-align: center;
            margin-top: calc(-1 * var(--nav-height, 110px));
            padding: calc(var(--nav-height, 110px) + 4rem) 2rem 4rem 2rem;
        }

        .mockup-hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-family: 'Bitter', serif;
            font-size: 4.2rem;
            font-weight: 800;
            color: #0B3D33;
            line-height: 1.15;
            letter-spacing: -1.5px;
            margin-bottom: 1.5rem;
        }

        .cursive-text {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-weight: 500;
            color: var(--primary-orange);
            margin-top: 0.2rem;
            display: block;
        }

        .hero-desc {
            font-family: 'Bitter', serif;
            font-size: 1.15rem;
            color: var(--text-brown);
            line-height: 1.8;
            max-width: 650px;
            margin: 1.5rem auto 2.5rem auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-block;
            background-color: var(--primary-teal);
            color: white;
            padding: 1.1rem 2.5rem;
            border-radius: 12px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-decoration: none;
            border: 2px solid var(--primary-teal);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(42, 157, 143, 0.35);
        }

        .btn-primary:hover {
            background-color: #22847d;
            border-color: #22847d;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(42, 157, 143, 0.5);
            color: white !important;
        }

        .btn-secondary {
            display: inline-block;
            background-color: rgba(253, 245, 230, 0.35);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: #0B3D33;
            padding: 1.1rem 2.5rem;
            border-radius: 12px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-decoration: none;
            border: 2px solid #0B3D33;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-secondary:hover {
            background-color: #0B3D33;
            color: white !important;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(11, 61, 51, 0.25);
        }

        /* --- Hero Eyebrow Tag (Dolphin Bay Pill in Upper Left) --- */
        .hero-eyebrow {
            position: absolute;
            top: calc(var(--nav-height, 110px) + 2rem);
            left: 2.5rem;
            margin: 0;
            z-index: 10;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(253, 245, 230, 0.55);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(11, 61, 51, 0.18);
            color: #0B3D33;
            font-family: 'Bitter', serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 2.8px;
            text-transform: uppercase;
            padding: 0.45rem 1.1rem;
            border-radius: 50px;
        }
        .hero-eyebrow::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary-orange);
            flex-shrink: 0;
        }

        /* Site logo sizing */
        .site-logo {
            height: 120px;
            width: auto;
            filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
            transition: transform 0.3s ease;
        }
        .site-logo:hover { transform: rotate(-8deg) scale(1.08); }

        @media (max-width: 768px) {
            .hero-title { font-size: 3rem; letter-spacing: -1px; }
            .hero-eyebrow {
                top: calc(var(--nav-height, 110px) + 1.2rem);
                left: 1.5rem;
                font-size: 0.58rem;
                padding: 0.35rem 0.8rem;
                letter-spacing: 1.5px;
            }
        }

        .polaroid-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            padding: 1rem;
        }
        .polaroid {
            background: white;
            padding: 1rem 1rem 3rem 1rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .polaroid:hover {
            transform: scale(1.05) rotate(2deg);
            z-index: 2;
        }
        .polaroid:nth-child(even):hover {
            transform: scale(1.05) rotate(-2deg);
        }
        .polaroid img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            margin-bottom: 1rem;
            display: block;
        }
        .caption {
            text-align: center;
            font-family: 'Abril Fatface', cursive;
            color: var(--text-brown);
            font-size: 1.2rem;
        }
        .tour-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Custom experiences carousel colors matching the nature tours sand & sea theme */
        .experiences-carousel-section {
            background: var(--sand-warm, #fdf5e6) !important;
            border-top: 1px solid rgba(42, 157, 143, 0.1) !important;
        }
        .carousel-heading {
            color: var(--text-brown) !important;
        }
        .carousel-subheading {
            color: #6c5c53 !important;
        }
        .carousel-card {
            background: rgba(255, 255, 255, 0.85) !important;
            border: 1px solid rgba(42, 157, 143, 0.1) !important;
            box-shadow: 0 15px 35px rgba(42, 157, 143, 0.05) !important;
        }
        .carousel-card:hover {
            border-color: var(--primary-teal) !important;
            transform: translateY(-8px) !important;
        }
        .carousel-card .card-overlay {
            background: linear-gradient(to top, rgba(253, 245, 230, 0.98) 15%, rgba(253, 245, 230, 0.5) 60%, transparent 100%) !important;
        }
        .carousel-card h3 {
            color: var(--text-brown) !important;
        }
        .carousel-card p {
            color: #5c4e46 !important;
        }
        .carousel-card .card-tag {
            color: var(--primary-orange) !important;
        }
        .carousel-card .card-link {
            color: var(--primary-teal) !important;
        }
        .carousel-card:hover .card-link {
            color: var(--primary-orange) !important;
        }
        .carousel-btn {
            background: rgba(42, 157, 143, 0.04) !important;
            border: 1px solid rgba(42, 157, 143, 0.1) !important;
            color: var(--text-brown) !important;
        }
        .carousel-btn:hover {
            background: var(--primary-teal) !important;
            border-color: var(--primary-teal) !important;
            color: #fff !important;
        }
    