
        /* 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.92) 0%, rgba(253,245,230,0.88) 40%, rgba(253,245,230,0.7) 65%, rgba(30,19,12,0.65) 100%), url('../assets/tour-images/kopie_van_img_5593.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-orange);
            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-orange);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(205, 104, 33, 0.35);
        }

        .btn-primary:hover {
            background-color: #b25318;
            border-color: #b25318;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(205, 104, 33, 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;
            }
        }

        /* Comparison Grid Layout */
        .grid-comparison-section {
            background-color: #faf8f5;
            padding: 8rem 0;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 4rem;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .premium-card {
            background: white;
            border-radius: 35px;
            padding: 4rem 3.5rem;
            box-shadow: 0 15px 45px rgba(0,0,0,0.02);
            border: 1px solid rgba(0,0,0,0.015);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .premium-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 6px;
            background: var(--primary-teal);
            transition: height 0.3s ease;
        }

        .premium-card.orange::before {
            background: var(--primary-orange);
        }

        .premium-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(61,43,31,0.06);
        }

        .premium-card:hover::before {
            height: 10px;
        }

        .premium-card h3 {
            font-family: 'Abril Fatface', cursive;
            font-size: 2.4rem;
            color: var(--text-brown);
            margin-bottom: 0.5rem;
        }

        .premium-card .card-price {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-orange);
            margin-bottom: 0.2rem;
        }

        .premium-card .card-price span {
            font-size: 1rem;
            font-weight: 400;
            color: #777;
        }

        .premium-card .card-duration {
            color: #666;
            font-style: italic;
            font-size: 0.95rem;
            margin-bottom: 2.5rem;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 3rem 0;
            flex-grow: 1;
        }

        .features-list li {
            margin-bottom: 1.2rem;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 1.05rem;
            line-height: 1.6;
            color: var(--text-brown);
        }

        .features-list li svg {
            flex-shrink: 0;
            margin-top: 3px;
        }

        .btn-card-book {
            display: block;
            text-align: center;
            background-color: var(--primary-teal);
            color: white;
            padding: 1.2rem;
            border-radius: 15px;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .premium-card.orange .btn-card-book {
            background-color: var(--primary-orange);
        }

        .btn-card-book:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        /* 7-Step Bento Grid Section */
        .steps-grid-section {
            background-color: #fff;
            padding: 8rem 0;
        }

        .bento-steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 4rem auto 0 auto;
            padding: 0 2rem;
        }

        .bento-card {
            background: linear-gradient(145deg, #fdfbf7, #f7f3eb);
            border: 1px solid rgba(61,43,31,0.08);
            padding: 2.8rem 2.4rem;
            box-shadow: 0 10px 25px rgba(61,43,31,0.03), inset 0 0 40px rgba(139,90,43,0.02);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            min-height: 220px;
        }

        /* Custom organic border radii for different positions */
        .bento-card:nth-child(odd) {
            border-radius: 32px 24px 30px 20px / 20px 30px 24px 32px;
        }
        .bento-card:nth-child(even) {
            border-radius: 20px 30px 24px 32px / 32px 24px 30px 20px;
        }
        .bento-card.intro-tile {
            border-radius: 38px 22px 34px 26px / 26px 34px 22px 38px;
            background: linear-gradient(145deg, #fbf7f0, #f2ece0);
            border: 1px solid rgba(139,90,43,0.12);
            min-height: 380px;
        }
        .bento-card.stats-tile {
            border-radius: 28px 36px 22px 30px / 30px 22px 36px 28px;
            background: linear-gradient(145deg, #ebf5f3, #e1eeeb);
            border: 1px solid rgba(26,122,114,0.12);
        }

        /* Bento Grid spans */
        .bento-card.span-2x2 {
            grid-column: span 2;
            grid-row: span 2;
        }
        .bento-card.span-2 {
            grid-column: span 2;
        }
        .bento-card.span-3 {
            grid-column: span 3;
        }
        .bento-card.span-tall {
            grid-row: span 2;
            min-height: 460px;
        }

        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(139,90,43,0.06), inset 0 0 40px rgba(139,90,43,0.03);
            border-color: rgba(205,104,33,0.25);
        }

        /* Photo reveal on hover for Harvesting card — uses ::before/::after */
        .bento-card--photo {
            position: relative;
            overflow: hidden;
            border-color: rgba(205,104,33,0.15);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .bento-card--photo::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: var(--bg-image);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 0.55s cubic-bezier(0.165,0.84,0.44,1), transform 0.55s cubic-bezier(0.165,0.84,0.44,1);
            z-index: 0;
            transform: scale(1.05);
        }
        .bento-card--photo::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(160deg, rgba(30,19,12,0.7) 0%, rgba(30,19,12,0.4) 100%);
            opacity: 0;
            transition: opacity 0.55s cubic-bezier(0.165,0.84,0.44,1);
            z-index: 1;
        }
        .bento-card--photo:hover::before {
            opacity: 1;
            transform: scale(1);
        }
        .bento-card--photo:hover::after {
            opacity: 1;
        }
        .bento-card--photo:hover {
            background: #1a0e07 !important;
            border-color: var(--primary-orange) !important;
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(30,19,12,0.25);
        }
        .bento-card--photo .bento-content {
            position: relative;
            z-index: 2;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .bento-card--photo:hover .bento-content {
            transform: translateY(-2px);
        }
        .bento-card--photo:hover .step-number {
            color: rgba(255,255,255,0.3) !important;
        }
        .bento-card--photo:hover h4 {
            color: #fff !important;
        }
        .bento-card--photo:hover p {
            color: rgba(253,245,230,0.88) !important;
        }

        /* Video reveal on hover for Fermenting card */
        .bento-card--video {
            position: relative;
            overflow: hidden;
            border-color: rgba(205,104,33,0.15);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .bento-card--video .bento-video-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.55s cubic-bezier(0.165,0.84,0.44,1), transform 0.55s cubic-bezier(0.165,0.84,0.44,1);
            z-index: 0;
            transform: scale(1.05);
            pointer-events: none;
        }
        .bento-card--video::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(160deg, rgba(30,19,12,0.7) 0%, rgba(30,19,12,0.4) 100%);
            opacity: 0;
            transition: opacity 0.55s cubic-bezier(0.165,0.84,0.44,1);
            z-index: 1;
        }
        .bento-card--video:hover .bento-video-bg {
            opacity: 1;
            transform: scale(1);
        }
        .bento-card--video:hover::after {
            opacity: 1;
        }
        .bento-card--video:hover {
            background: #1a0e07 !important;
            border-color: var(--primary-orange) !important;
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(30,19,12,0.25);
        }
        .bento-card--video .bento-content {
            position: relative;
            z-index: 2;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .bento-card--video:hover .bento-content {
            transform: translateY(-2px);
        }
        .bento-card--video:hover .step-number {
            color: rgba(255,255,255,0.3) !important;
        }
        .bento-card--video:hover h4 {
            color: #fff !important;
        }
        .bento-card--video:hover p {
            color: rgba(253,245,230,0.88) !important;
        }

        .bento-card.intro-tile:hover {
            border-color: rgba(26,122,114,0.3);
        }
        .bento-card.stats-tile:hover {
            border-color: rgba(26,122,114,0.4);
        }

        .bento-card .step-number {
            font-family: 'Abril Fatface', cursive;
            font-size: 2.8rem;
            color: rgba(205, 104, 33, 0.15);
            margin-bottom: 1.2rem;
            line-height: 1;
            transition: color 0.3s ease;
        }
        .bento-card:hover .step-number {
            color: var(--primary-orange);
        }

        .bento-card h4 {
            font-family: 'Bitter', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-brown);
            margin-bottom: 0.8rem;
        }
        
        .bento-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #666;
            margin: 0;
        }

        .bento-card .bento-tag {
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary-teal);
            margin-bottom: 0.8rem;
            display: inline-block;
        }

        /* Responsive Bento Collapse */
        @media (max-width: 968px) {
            .bento-steps-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1.5rem;
            }
            .bento-card.span-2x2,
            .bento-card.span-2,
            .bento-card.span-3,
            .bento-card.span-tall {
                grid-column: span 1 !important;
                grid-row: span 1 !important;
                min-height: 220px !important;
            }
            .bento-card.intro-tile {
                min-height: 300px !important;
            }
        }

        @media (max-width: 768px) {
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .premium-card {
                padding: 3rem 2rem;
            }
            .card-image-wrapper {
                width: calc(100% + 4rem) !important;
                margin: -3rem -2rem 2rem -2rem !important;
                height: 200px !important;
            }
        }

        /* Card Image Styling */
        .card-image-wrapper {
            width: calc(100% + 7rem);
            margin: -4rem -3.5rem 3rem -3.5rem;
            height: 240px;
            overflow: hidden;
            position: relative;
            border-top-left-radius: 34px;
            border-top-right-radius: 34px;
        }
        .card-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .premium-card:hover .card-image-wrapper img {
            transform: scale(1.08);
        }

        /* Practical Information Grid */
        .practical-info-section {
            padding: 8rem 2rem;
            background: #faf8f5;
            border-top: 1px solid rgba(0,0,0,0.015);
            border-bottom: 1px solid rgba(0,0,0,0.015);
        }
        .practical-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }
        @media (max-width: 968px) {
            .practical-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }



        /* Custom experiences carousel colors matching the dark chocolate cacao theme */
        .experiences-carousel-section {
            background: #1e130c !important;
            border-top: 1px solid rgba(205, 104, 33, 0.15) !important;
        }
        .carousel-heading {
            color: #fff !important;
        }
        .carousel-subheading {
            color: #d1c2b9 !important;
        }
        .carousel-card {
            background: rgba(42, 29, 21, 0.7) !important;
            border: 1px solid rgba(205, 104, 33, 0.15) !important;
            box-shadow: 0 15px 35px rgba(0,0,0,0.4) !important;
        }
        .carousel-card:hover {
            border-color: var(--primary-orange) !important;
            transform: translateY(-8px) !important;
        }
        .carousel-card .card-overlay {
            background: linear-gradient(to top, rgba(30, 19, 12, 0.98) 15%, rgba(30, 19, 12, 0.5) 60%, transparent 100%) !important;
        }
        .carousel-card h3 {
            color: #fff !important;
        }
        .carousel-card p {
            color: #d1c2b9 !important;
        }
        .carousel-card .card-tag {
            color: var(--primary-teal) !important;
        }
        .carousel-card .card-link {
            color: var(--primary-orange) !important;
        }
        .carousel-card:hover .card-link {
            color: #fff !important;
        }
        .carousel-btn {
            background: rgba(255, 255, 255, 0.03) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            color: #fff !important;
        }
        .carousel-btn:hover {
            background: var(--primary-orange) !important;
            border-color: var(--primary-orange) !important;
            color: #fff !important;
        }



        /* Prevent subpixel white lines under Aztec divider */
        .tribal-border {
            margin-bottom: -2px !important;
            position: relative;
            z-index: 10;
        }

        /* ==========================================================================
           PREMIUM ENHANCEMENTS & INTERACTION UPGRADES (CSS DESIGN SYSTEM)
           ========================================================================== */

        /* 1. Image Rotator for Cacao Tasting Card */
        .image-rotator {
            position: relative;
        }
        .rotator-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.5s ease-in-out, transform 0.5s ease;
            z-index: 1;
        }
        .rotator-img.active {
            opacity: 1;
            z-index: 2;
        }

        /* 2. Custom Styled Native Accordion FAQ (Mutual Exclusive Details) */
        .accordion-item {
            border-bottom: 1px solid rgba(61,43,31,0.12);
        }
        .accordion-trigger {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.8rem 0.5rem;
            text-align: left;
            background: none;
            border: none;
            outline: none;
            cursor: pointer;
            list-style: none; /* Hide standard summary arrow */
            transition: all 0.3s ease;
        }
        .accordion-trigger::-webkit-details-marker {
            display: none; /* Hide Webkit summary arrow */
        }
        .accordion-trigger span.question-text {
            font-family: 'Bitter', serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-brown);
            transition: color 0.3s ease;
        }
        .accordion-item:hover .accordion-trigger span.question-text {
            color: var(--primary-teal);
        }
        .accordion-item[open] .accordion-trigger span.question-text {
            color: var(--primary-orange);
        }
        .accordion-icon {
            font-size: 1.6rem;
            font-weight: 300;
            color: #81756e;
            transition: transform 0.3s ease, color 0.3s ease;
            user-select: none;
            line-height: 1;
        }
        .accordion-item[open] .accordion-icon {
            transform: rotate(45deg);
            color: var(--primary-orange);
        }
        .accordion-content {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease;
            opacity: 0;
            padding: 0 0.5rem;
        }
        .accordion-item[open] .accordion-content {
            grid-template-rows: 1fr;
            opacity: 1;
        }
        .accordion-content-inner {
            overflow: hidden;
        }
        .accordion-content p {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.7;
            margin: 0;
            padding-bottom: 2rem;
        }

        /* 3. Google Maps Custom Warm Sepia Styling */
        .faq-map-container iframe {
            filter: sepia(0.25) contrast(0.95) saturate(0.85) hue-rotate(5deg);
            transition: filter 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .faq-map-container iframe:hover {
            filter: none;
        }

        /* 4. Extracted Responsive Styles for Living Forest & Papito Promo */
        .living-forest-section {
            position: relative;
            padding: 6rem 2rem;
            text-align: center;
            border-radius: 35px;
            max-width: 1100px;
            margin: 4rem auto;
            border: 1px solid rgba(0,0,0,0.1);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            overflow: hidden;
            z-index: 1;
            transition: box-shadow 0.4s ease, transform 0.4s ease;
        }
        .living-forest-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../assets/tour-images/biodiversity-sanctuary-bg.jpg') no-repeat center/cover;
            z-index: 1;
            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .living-forest-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(11, 61, 51, 0.85), rgba(11, 61, 51, 0.85));
            z-index: 2;
            transition: opacity 0.6s ease-in-out;
        }
        .living-forest-section:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 45px rgba(0,0,0,0.2);
        }
        .living-forest-section:hover::before {
            transform: scale(1.03); /* Subtle image scale zoom */
        }
        .living-forest-section:hover::after {
            opacity: 0; /* Fully reveals the background picture */
        }
        .living-forest-badge {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 0.2rem;
            position: relative;
            z-index: 3;
            transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .living-forest-section:hover .living-forest-badge {
            opacity: 0;
            transform: translateY(-20px);
        }
        .living-forest-title {
            font-family: 'Abril Fatface', cursive;
            font-size: 3rem;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            position: relative;
            z-index: 3;
            transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .living-forest-section:hover .living-forest-title {
            opacity: 0;
            transform: translateY(-25px);
        }
        .living-forest-text {
            font-size: 1.15rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
            font-family: 'Bitter', serif;
            max-width: 800px;
            margin: 0 auto;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
            position: relative;
            z-index: 3;
            transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .living-forest-section:hover .living-forest-text {
            opacity: 0;
            transform: translateY(25px);
        }

        .papito-promo-card {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 15px 45px rgba(61,43,31,0.04);
            text-align: left;
            margin: 3rem 0;
            border-left: 5px solid var(--primary-teal);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .papito-promo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(61,43,31,0.08);
        }
        .papito-flex-container {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .papito-img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            flex-shrink: 0;
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .papito-promo-card:hover .papito-img {
            transform: scale(1.08) rotate(3deg);
        }
        .papito-content {
            flex: 1;
            min-width: 250px;
        }
        .papito-title {
            font-family: 'Abril Fatface', cursive;
            font-size: 1.8rem;
            color: var(--text-brown);
            margin-bottom: 0.5rem;
        }
        .papito-text {
            color: #666;
            margin-bottom: 1.2rem;
            line-height: 1.6;
            font-size: 1.05rem;
        }
        .papito-list {
            color: #666;
            line-height: 1.6;
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            list-style-type: disc;
        }
        .papito-list li {
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .living-forest-section {
                padding: 4rem 1.5rem;
                margin: 2rem 1rem;
            }
            .living-forest-title {
                font-size: 2.2rem;
            }
            .living-forest-text {
                font-size: 1rem;
            }
            .papito-promo-card {
                padding: 2rem 1.5rem;
            }
            .papito-flex-container {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }
            .papito-list {
                text-align: left;
            }
        }

        /* 5. Drag-to-Scroll & Progress Bar for Experiences Carousel */
        .carousel-viewport {
            cursor: grab;
            user-select: none;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }
        .carousel-viewport:active {
            cursor: grabbing;
        }
        .carousel-progress-track {
            width: 120px;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin: 1.5rem auto 0;
            overflow: hidden;
            position: relative;
        }
        .carousel-progress-bar {
            width: 0%;
            height: 100%;
            background: var(--primary-orange);
            border-radius: 10px;
            position: absolute;
            top: 0;
            left: 0;
            transition: width 0.1s ease-out;
        }

        /* 6. Micro-Animations & Hover Polishing */
        /* Glossy Button Shine */
        .btn-primary, .btn-card-book {
            position: relative;
            overflow: hidden;
        }
        .btn-primary::after, .btn-card-book::after {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.25) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: skewX(-25deg);
            transition: none;
        }
        .btn-primary:hover::after, .btn-card-book:hover::after {
            left: 150%;
            transition: left 0.9s ease-out;
        }

        /* Spring Card Lift overrides */
        .premium-card {
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15), box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
        }
        .premium-card:hover {
            transform: translateY(-12px) scale(1.01);
            box-shadow: 0 30px 60px rgba(61,43,31,0.08);
        }

        /* Polaroid floating offsets & hover align */
        .polaroid-masonry {
            perspective: 1000px;
        }
        .polaroid-item {
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.15), box-shadow 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.15);
            transform-style: preserve-3d;
        }
        /* Pre-apply random offsets styled via JS, but setup clear hover */
        .polaroid-item:hover {
            transform: translateY(-15px) rotate(0deg) scale(1.06) !important;
            z-index: 20;
            box-shadow: 0 25px 50px rgba(30,19,12,0.18) !important;
        }

        /* 7. Bento Grid improvements */
        .bento-card.span-3 p {
            max-width: 65ch;
        }

        /* Bento steps background classes compiled by Vite */
        .bento-step-1::before {
            background-image: url('../assets/tour-images/kopie_van_img_5593.jpg') !important;
        }
        .bento-step-3::before {
            background-image: url('../assets/tour-images/sundrying.jpg') !important;
        }
        .bento-step-4::before {
            background-image: url('../assets/tour-images/roasting.jpg') !important;
        }
        .bento-step-5::before {
            background-image: url('../assets/tour-images/368A8470.JPG') !important;
        }
        .bento-step-6::before {
            background-image: url('../assets/tour-images/champion_juicer_on_wooden_table.jpg') !important;
        }
        .bento-step-7::before {
            background-image: url('../assets/tour-images/368A8451.JPG') !important;
        }
    