:root {
            --bakery-red: #d84343;
            --parchment-beige: #F5E6D3;
            --vintage-black: #2c1810;
            --white: #FFFFFF;
            --bakery-gold: #FFD93D;
            --teal: #00BFA6;
            --brand-font: 'Alright Sans', 'Montserrat', sans-serif;

            /* Spacing Scale (8px base) */
            --space-xs: 0.5rem;
            /* 8px */
            --space-sm: 1rem;
            /* 16px */
            --space-md: 1.5rem;
            /* 24px */
            --space-lg: 2rem;
            /* 32px */
            --space-xl: 3rem;
            /* 48px */
            --space-2xl: 4rem;
            /* 64px */
            --space-3xl: 6rem;
            /* 96px */
        }

        body {
            background-color: var(--parchment-beige);
            color: var(--vintage-black);
            font-family: var(--brand-font);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            cursor: none;
        }

        /* ===== SCROLL PROGRESS INDICATOR ===== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--bakery-red), var(--bakery-gold));
            z-index: 10000;
            transition: width 0.1s linear;
        }

        /* ===== SKELETON LOADER FOR LAZY IMAGES ===== */
        .skeleton-loader {
            position: relative;
            background: linear-gradient(90deg, #e0d6c8 25%, #f5ece0 50%, #e0d6c8 75%);
            background-size: 200% 100%;
            animation: skeleton-shimmer 1.5s infinite;
        }

        .skeleton-loader img {
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .skeleton-loader img.loaded {
            opacity: 1;
        }

        @keyframes skeleton-shimmer {
            0% {
            background-position: 200% 0;
            }

            100% {
            background-position: -200% 0;
            }
        }

        /* ===== CUSTOM CURSOR ===== */
        .custom-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 2px solid var(--bakery-red);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
            mix-blend-mode: difference;
        }

        .custom-cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(216, 67, 67, 0.3);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
            mix-blend-mode: difference;
        }

        .bg-grid {
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(rgba(216, 67, 67, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(216, 67, 67, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            display: block;
            pointer-events: none;
            z-index: 2;
        }

        @keyframes gridMove {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(50px, 50px);
            }
        }

        .haptic-texture::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 500;
            opacity: 0.15;
            background-image: url("https://www.transparenttextures.com/patterns/notebook.png");
            filter: contrast(110%) brightness(95%);
        }

        /* ----- NAVIGATION ----- */
        #main-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1.5rem;
            height: 110px;
            z-index: 1000;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(to bottom, rgba(245, 242, 232, 1) 0%, rgba(245, 242, 232, 0) 100%);
        }

        @media (min-width: 768px) {
            #main-nav {
            padding: 0 5rem;
            }
        }

        #main-nav.sticky {
            height: 80px;
            background: var(--parchment-beige) !important;
            border-bottom: 1px solid rgba(44, 24, 16, 0.1);
            /* Subtle vintage-black */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        /* Mobile Menu Styles */
        #mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--parchment-beige);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transform: translateY(-100%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #mobile-menu-overlay.active {
            transform: translateY(0);
        }

        .menu-close-btn {
            position: absolute;
            top: 30px;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2100;
            border: none;
            background: transparent;
            font-family: 'Alright Sans', sans-serif;
            font-weight: 300;
            font-size: 1.5rem;
        }

        .mobile-nav-link {
            font-family: 'Alright Sans', sans-serif;
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--vintage-black);
            text-transform: uppercase;
            text-decoration: none;
            padding: 10px;
            /* Improved touch target */
        }

        .hamburger-btn {
            background: none;
            border: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
            width: 48px;
            /* Increased touch target */
            height: 48px;
            cursor: pointer;
            z-index: 2100;
            padding: 10px;
            /* Center content */
        }

        /* Hamburger Line Colors - Default White for Dark Hero */
        .hamburger-line {
            width: 100%;
            height: 2px;
            background-color: var(--parchment-beige);
            /* White/Beige on dark hero */
            transition: all 0.3s ease;
        }

        /* Sticky State - Switch properly to Black */
        #main-nav.sticky .hamburger-line {
            background-color: var(--vintage-black);
        }

        /* Hamburger Animation */
        .hamburger-btn.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
            background-color: var(--vintage-black);
        }

        .hamburger-btn.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger-btn.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
            background-color: var(--vintage-black);
        }

        .logo-container {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            pointer-events: none;
            z-index: 1100;
        }

        .logo-container a {
            pointer-events: auto;
            display: block;
        }

        #nav-logo {
            height: 80px;
            /* Optimized for 110px navbar */
            width: auto;
            max-width: 80vw;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
            object-fit: contain;
        }

        #main-nav.sticky #nav-logo {
            height: 48px;
        }

        #main-nav.sticky .logo-container {
            top: 0;
            height: 100%;
            transform: translateX(-50%);
            align-items: center;
        }

        .nav-link {
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.35em;
            font-size: 11px;
            font-weight: 900;
            color: var(--vintage-black);
            padding: 0.75rem 1rem;
                /* Fitts's Law: Larger hit area */
            transition: color 0.3s ease;
            }

        .nav-link:hover {
            color: var(--bakery-red);
            }

        /* ----- HERO SECTION ----- */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-image: url("../Hero.avif");
            background-size: cover;
            background-position: center top;
            /* Focus on top to potentially hide bottom stripes in image */
            z-index: -1;
            }

            .hero-container {
            height: 100vh;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
            padding-top: 9rem;
                text-align: center;
            position: relative;
            }

            @media (min-width: 768px) {
                .hero-container {
                padding-top: 11rem;
                }
            }

            .headline {
            font-family: 'Alright Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(3.5rem, 10vw, 8rem);
            line-height: 1.0;
            text-transform: uppercase;
            color: var(--white);
            z-index: 30;
                text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            margin-top: 2rem;
            letter-spacing: -0.02em;
            }

            /* ----- STORY SECTION ----- */
            .story-section {
            background-color: var(--parchment-beige);
            padding: 10rem 0;
            position: relative;
            z-index: 10;
            margin-top: 0;
            }


            .story-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 4rem;
            max-width: 1400px;
                margin: 0 auto;
            padding: 0 1.5rem;
                align-items: center;
            }

            @media (min-width: 1024px) {
                .story-grid {
                    grid-template-columns: 1fr 1fr;
                    gap: 8rem;
                padding: 0 6rem;
                }
            }

            .story-title {
            font-family: 'Alright Sans', sans-serif;
            font-weight: 700;
            font-size: clamp(2.5rem, 6vw, 5rem);
            line-height: 1.0;
            text-transform: uppercase;
            color: var(--bakery-red);
            }

            .story-image {
            width: 100%;
                /* Removed hard border and shadow */
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                border-radius: 4px;
            }

            .btn-solid {
            background: var(--white);
            color: var(--vintage-black);
            padding: 1.2rem 3rem;
            font-family: 'Alright Sans', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-size: 12px;
            font-weight: 700;
                border: 1px solid rgba(44, 24, 16, 0.1);
                /* Removed hard shadow */
            transition: all 0.3s;
            margin-top: 4rem;
            }

            .btn-solid:hover {
            background: var(--vintage-black);
            color: var(--white);
            }

            /* --- MASONRY LAYOUT (from Gallery) --- */
            .masonry-container {
                columns: 1;
                column-gap: 1rem;
            width: 100%;
            max-width: 1600px;
                margin: 0 auto;
            padding: 4rem 2rem;
            background-color: var(--parchment-beige);
            /* Keep background consistent */
            }

            @media (min-width: 640px) {
                .masonry-container {
                    columns: 2;
                }
            }

            @media (min-width: 1024px) {
                .masonry-container {
                    columns: 3;
                }
            }

            @media (min-width: 1280px) {
                .masonry-container {
                    columns: 4;
                }
            }

            .masonry-item {
                break-inside: avoid;
                margin-bottom: 1rem;
            position: relative;
            }

            /* --- GALLERY LOGIC --- */
            .gallery-card {
            background: white;
            transition: all 0.4s ease-out;
                overflow: hidden;
                display: block;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            }

            .masonry-item:hover .gallery-card {
                transform: translateY(-5px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            z-index: 50;
            }

            .img-zoom {
            transition: transform 1.5s ease;
            width: 100%;
            height: auto;
                display: block;
            }

            .masonry-item:hover .img-zoom {
                transform: scale(1.1);
            }

            .caption-note {
            font-family: 'Alright Sans', sans-serif;
            font-size: 0.75rem;
            margin-top: 0.75rem;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                opacity: 0.6;
            color: var(--vintage-black);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            }

            .caption-note::before {
                content: "";
            width: 30px;
            height: 1px;
            background: rgba(44, 24, 16, 0.2);
            }

            /* Reveal Logic */
            @keyframes revealItem {
                from {
                    opacity: 0;
                    transform: translateY(30px) scale(0.98);
                }

                to {
                    opacity: 1;
                    transform: translateY(0) scale(1);
                }
            }

            .reveal {
                opacity: 0;
            }

            .reveal.active {
                animation: revealItem 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            }

            .gallery-section-header {
            max-width: 1600px;
                margin: 0 auto;
            padding: 4rem 1.5rem 0;
            background-color: var(--parchment-beige);
            }

            @media (min-width: 768px) {
                .gallery-section-header {
                padding: 6rem 2rem 0;
                }
            }

            .batch-title {
            font-family: 'Alright Sans', sans-serif;
            font-weight: 700;
            font-size: clamp(3rem, 10vw, 7rem);
            line-height: 0.8;
            color: var(--bakery-red);
            text-transform: uppercase;
            }

            /* --- INSTAGRAM GRID (Custom Adapted) --- */
            .insta-grid-wrapper {
            max-width: 1400px;
                margin: 0 auto;
            padding: 4rem 1.5rem;
            }

            .insta-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            @media (min-width: 768px) {
                .insta-grid {
                    grid-template-columns: repeat(4, 1fr);
                }
            }

            @media (min-width: 1280px) {
                .insta-grid {
                    grid-template-columns: repeat(6, 1fr);
                }
            }

            .insta-item {
            position: relative;
                aspect-ratio: 1;
                /* Removed border and hard shadow */
                overflow: hidden;
            background: var(--white);
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease-out;
                display: block;
            }

            .insta-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            z-index: 20;
            }

            .insta-item img {
            width: 100%;
            height: 100%;
                object-fit: cover;
            transition: transform 0.5s ease;
            }

            .insta-item:hover img {
                transform: scale(1.1);
            }

            .insta-overlay {
            position: absolute;
                inset: 0;
            background: rgba(26, 26, 26, 0.9);
                /* vintage-black opacity */
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            padding: 1rem;
                opacity: 0;
            transition: opacity 0.3s ease;
                text-align: center;
            }

            .insta-item:hover .insta-overlay {
                opacity: 1;
            }

            .insta-icon {
            color: var(--bakery-gold);
            width: 24px;
            height: 24px;
                margin-bottom: 0.5rem;
                transform: translateY(10px);
            transition: transform 0.3s ease 0.1s;
            }

            .insta-caption {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            color: var(--parchment-beige);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            line-height: 1.4;
                transform: translateY(20px);
            transition: transform 0.3s ease 0.2s;
            }

            .insta-item:hover .insta-icon,
            .insta-item:hover .insta-caption {
                transform: translateY(0);
            }

            /* ----- INSTAGRAM MODAL ----- */
            .insta-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(245, 242, 232, 0.95);
            z-index: 5000;
                display: none;
                justify-content: center;
                align-items: center;
            padding: 2rem;
                opacity: 0;
            transition: opacity 0.3s ease;
            }

            .insta-modal.active {
                display: flex;
                opacity: 1;
            }

            .insta-modal-content {
            background: var(--white);
                /* Removed border and shadow */
                box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
                display: flex;
            max-width: 900px;
            width: 100%;
            max-height: 80vh;
                overflow: hidden;
            position: relative;
            }

            .insta-modal-close {
            position: absolute;
            top: 1rem;
                right: 1.5rem;
            font-family: 'Alright Sans', sans-serif;
            font-size: 2rem;
            color: var(--vintage-black);
                cursor: pointer;
            z-index: 10;
            line-height: 1;
            }

            .insta-modal-image {
            width: 60%;
            background: #000;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .insta-modal-image img {
            width: 100%;
            height: 100%;
                object-fit: cover;
            }

            .insta-modal-text {
            width: 40%;
            padding: 2rem;
                display: flex;
                flex-direction: column;
                overflow-y: auto;
            }

            @media (max-width: 768px) {
                .insta-modal-content {
                    flex-direction: column;
                }

                .insta-modal-image,
                .insta-modal-text {
                width: 100%;
                }
            }

            /* --- REVIEWS MASONRY --- */
            .reviews-masonry {
                columns: 1;
                column-gap: 2rem;
                max-width: 1200px;
                margin: 0 auto;
                text-align: left;
            }
            @media (min-width: 768px) {
                .reviews-masonry { columns: 2; }
            }
            @media (min-width: 1024px) {
                .reviews-masonry { columns: 3; }
            }

            .review-card {
                break-inside: avoid;
                margin-bottom: 2rem;
                padding: 2.5rem;
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(244, 197, 106, 0.1);
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                display: flex;
                flex-direction: column;
                backdrop-filter: blur(10px);
            }

            .review-card:hover {
                transform: translateY(-10px);
                background: rgba(255, 255, 255, 0.08);
                border-color: #F4C56A;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            }

            .review-card::after {
                content: 'G';
                position: absolute;
                bottom: 2rem;
                right: 2.5rem;
                font-family: 'Google Sans', sans-serif;
                font-weight: bold;
                font-size: 1.5rem;
                opacity: 0.2;
                color: #F4C56A;
            }

            .swiper-pagination-bullet {
            background: var(--parchment-beige) !important;
                opacity: 0.3;
            }

            .swiper-pagination-bullet-active {
                opacity: 1;
            background: var(--bakery-gold) !important;
            }

            .google-badge {
                display: inline-flex;
                align-items: center;
                gap: 1.5rem;
                background: #F5E6D3;
                padding: 1.5rem 2.5rem;
                border: 4px solid #F4C56A;
                margin-bottom: 5rem;
                box-shadow: 12px 12px 0px rgba(244, 197, 106, 0.4);
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                text-decoration: none;
                cursor: pointer;
                transform: rotate(-1deg);
            }

            .google-badge:hover {
                transform: scale(1.05) rotate(0deg);
                box-shadow: 15px 15px 0px rgba(244, 197, 106, 0.6);
                background: #ffffff;
                border-color: var(--bakery-red);
            }

            .google-badge img {
                height: 48px;
            }
