        :root {
            --primary: #914F1E;
            --secondary: #DEAC80;
            --highlight: #DEF9C4;
            --accent: #FEF9C3; /* Light Yellow */
            --text-black: #1a1a1a;
        }

        body {
            font-family: 'Average Sans', sans-serif;
            background-color: #ffffff;
            color: var(--text-black);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Utilities */
        .bg-primary { background-color: var(--primary); }
        .text-primary { color: var(--primary); }
        .bg-secondary { background-color: var(--secondary); }
        .bg-highlight { background-color: var(--highlight); }
        .bg-accent { background-color: var(--accent); }
        .text-accent { color: var(--accent); }
        
        /* Layout Management */
        .page-section { display: none; min-height: 100vh; }
        .page-section.active { display: block; animation: fadeIn 0.5s ease; }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Header Styles */
        .header-sticky {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--primary);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            transition: all 0.3s;
        }

        .nav-link {
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
            font-size: 0.85rem;
            transition: color 0.2s;
            color: var(--highlight);
        }
        .nav-link:hover { color: var(--accent); }

        /* Component Styles */
        .btn-cta {
            background-color: var(--accent);
            color: var(--primary);
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            filter: brightness(1.05);
        }

        .card-entry {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0,0,0,0.05);
            background: white;
            cursor: pointer;
        }
        .card-entry:hover {
            transform: translateY(-12px);
            background-color: var(--secondary);
            color: white;
            border-color: transparent;
        }

        /* Hero Image Collage */
        .hero-collage-container {
            position: relative;
            height: 550px;
        }
        .collage-img {
            position: absolute;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            transition: all 0.5s ease;
            object-fit: cover;
        }
        .collage-img:nth-child(1) { width: 300px; height: 400px; top: 0; right: 0; transform: rotate(4deg); z-index: 2; }
        .collage-img:nth-child(2) { width: 280px; height: 350px; bottom: 0; left: 0; transform: rotate(-6deg); z-index: 1; }
        .collage-img:nth-child(3) { width: 320px; height: 320px; top: 100px; right: 180px; transform: rotate(-2deg); z-index: 3; }

        /* Modals */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: var(--primary); }

        /* Search Overlay */
        #search-panel {
            position: fixed;
            top: -100%;
            left: 0;
            width: 100%;
            background: var(--primary);
            color: white;
            padding: 4rem 2rem;
            z-index: 1001;
            transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        #search-panel.open { top: 0; }
        :root {
            --primary: #914F1E;
            --secondary: #DEAC80;
            --highlight: #DEF9C4;
            --accent: #FEF08A; /* Light Yellow */
            --black: #000000;
        }

        body {
            font-family: 'Average Sans', sans-serif;
            color: var(--black);
            background-color: #ffffff;
            scroll-behavior: smooth;
        }

        /* Typography */
        h1, h2, h3, h4 {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
        }

        .page-section { display: none; min-height: 100vh; }
        .page-section.active { display: block; }

        /* Navigation Styles */
        .header-sticky {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--primary);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        /* Buttons & Interactions */
        .btn-cta {
            background-color: var(--accent);
            color: var(--primary);
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn-cta:hover { transform: scale(1.05); filter: brightness(1.1); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

        .card-lift {
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
            border: 1px solid transparent;
        }
        .card-lift:hover {
            transform: translateY(-8px);
            background-color: var(--secondary) !important;
            border-color: var(--primary);
        }

        /* Hero Animation & Layout */
        .hero-bg-anim {
            background: linear-gradient(-45deg, #DEAC80, #DEF9C4, #FEF08A, #ffffff);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .collage-container img {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .collage-container img:hover { transform: scale(1.08) rotate(0deg) !important; z-index: 10; }

        /* Modals */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(145, 79, 30, 0.9);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        #search-results-overlay {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: 8px;
            margin-top: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            max-height: 400px;
            overflow-y: auto;
            display: none;
        }

        .no-scrollbar::-webkit-scrollbar { display: none; }

        .nav-btn {
    @apply hover:text-[#DEF9C4] uppercase text-xs font-bold tracking-widest transition;
}

.mobile-nav-btn {
    @apply uppercase text-sm font-bold tracking-widest hover:text-[#DEF9C4] transition;
}
