        :root {
            --apricot: #F4D793;
            --cream: #FFF6DA;
            --terra: #A94A4A;
            --white: #ffffff;
            --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background-color: var(--cream);
            color: var(--terra);
            font-family: 'Patrick Hand SC', cursive;
            overflow-x: hidden;
            line-height: 1.4;
            font-size: 1.2rem;
        }

        /* --- Header & Navigation --- */
        header {
            position: fixed;
            top: 0; width: 100%;
            height: 80px;
            background: var(--cream);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            z-index: 1000;
            transition: var(--transition);
            border-bottom: 1px solid rgba(169, 74, 74, 0.1);
        }

        header.scrolled {
            height: 60px;
            box-shadow: 0 4px 20px rgba(169, 74, 74, 0.1);
        }

.logo-container { 
    height: 100%; 
    display: flex; 
    align-items: center; 
}

.logo-img { 
    height: 120px; /* Independent of header height */
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-img:hover { 
    transform: scale(1.05); 
}
        nav { display: flex; gap: 30px; }
        nav a { 
            text-decoration: none; 
            color: var(--terra); 
            font-size: 1.4rem;
            cursor: pointer;
            position: relative;
        }
        nav a::after {
            content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
            background: var(--terra); transition: 0.3s;
        }
        nav a:hover::after { width: 100%; }

        .nav-right { display: flex; gap: 20px; align-items: center; }
        .icon-btn { cursor: pointer; transition: 0.3s; }
        .icon-btn:hover { transform: translateY(-2px); opacity: 0.8; }

        /* --- Global Elements --- */
        .btn {
            background: var(--terra);
            color: var(--cream);
            padding: 12px 30px;
            border-radius: 8px;
            border: none;
            font-family: 'Patrick Hand SC', cursive;
            font-size: 1.4rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-5px) rotate(-1deg);
            box-shadow: 0 10px 20px rgba(169, 74, 74, 0.2);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .page { display: none; opacity: 0; transition: opacity 0.6s ease; padding-top: 80px; }
        .page.active { display: block; opacity: 1; }

        section { padding: 100px 10%; position: relative; }

        /* --- Hero Section --- */
        .hero {
            background: var(--apricot);
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .hero::after {
            content: ''; position: absolute; bottom: 0; right: 0;
            width: 100%; height: 150px;
            background: var(--cream);
            clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        }

        .editorial-card {
            background: var(--white);
            width: 100%;
            max-width: 800px;
            border-radius: 4px;
            box-shadow: 30px 30px 0px rgba(169, 74, 74, 0.1);
            overflow: hidden;
            z-index: 10;
        }
        .carousel {
            height: 400px;
            position: relative;
            background: #eee;
        }
        .carousel img { 
            width: 100%; height: 100%; object-fit: cover; 
            animation: panImage 20s infinite alternate linear;
        }
        @keyframes panImage { from { transform: scale(1); } to { transform: scale(1.1) translate(-2%, -2%); } }
        
        .card-content { padding: 50px; text-align: center; }
        .card-content h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1; }
        .card-content p { font-size: 1.5rem; margin-bottom: 30px; }

        /* --- Feature Highlights (Diagonal) --- */
        .features-split {
            display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
        }
        .feature-card {
            background: var(--white);
            padding: 30px;
            margin-bottom: 25px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: var(--transition);
            cursor: pointer;
        }
        .feature-card:hover { transform: scale(1.03) translateX(10px); }
        .feature-card h3 { font-size: 2rem; margin-bottom: 10px; }

        /* --- Storytelling Blocks --- */
        .story-block {
            display: flex; gap: 60px; align-items: center; margin-bottom: 120px;
        }
        .story-block.reverse { flex-direction: row-reverse; }
        .story-img {
            flex: 1; height: 500px; border-radius: 20px; overflow: hidden;
            box-shadow: 20px 20px 0 var(--apricot);
        }
        .story-img img { width: 100%; height: 100%; object-fit: cover; }
        .story-text { flex: 1; }
        .story-text h2 { font-size: 3rem; margin-bottom: 25px; }

        /* --- Testimonials --- */
        .testimonials { background: var(--terra); color: var(--cream); text-align: center; }
        .testi-track {
            display: flex; gap: 40px; overflow-x: auto; padding: 40px 0;
            scrollbar-width: none;
        }
        .testi-card {
            min-width: 350px; background: rgba(255,255,255,0.05);
            padding: 40px; border-radius: 15px; border: 1px solid rgba(255,246,218,0.2);
            font-style: italic; font-size: 1.4rem;
        }

        /* --- Filter System --- */
        .filter-bar {
            display: flex; justify-content: center; gap: 20px; margin-bottom: 50px;
        }
        .filter-btn {
            padding: 10px 25px; border: 2px solid var(--terra);
            border-radius: 30px; cursor: pointer; transition: 0.3s;
        }
        .filter-btn.active { background: var(--terra); color: var(--cream); }

        /* --- Side Panels --- */
        .overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.4);
            backdrop-filter: blur(5px); z-index: 1500; display: none;
        }
        .side-panel {
            position: fixed; top: 0; right: -100%; width: 500px; height: 100%;
            background: var(--cream); z-index: 2000; padding: 60px 40px;
            box-shadow: -10px 0 40px rgba(0,0,0,0.1); transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
            overflow-y: auto;
        }
        .side-panel.active { right: 0; }

        /* --- Footer --- */
        footer {
            background: var(--terra); color: var(--cream);
            padding: 80px 10% 40px;
        }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
        .footer-col h4 { font-size: 1.8rem; margin-bottom: 25px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: var(--cream); text-decoration: none; opacity: 0.8; transition: 0.3s; }
        .footer-col a:hover { opacity: 1; padding-left: 5px; }
        .social-links { display: flex; gap: 15px; margin-top: 20px; }
        .social-icon {
            width: 40px; height: 40px; border: 1px solid var(--cream);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
        }

        /* --- Animation Utilities --- */
        .reveal { opacity: 0; transform: translateY(30px); transition: 1s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* Responsive */
        @media (max-width: 900px) {
            .features-split, .story-block, .footer-grid { grid-template-columns: 1fr; flex-direction: column; }
            .side-panel { width: 100%; }
            .story-block.reverse { flex-direction: column; }
        }
    
        /* --- Hamburger Menu --- */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100; /* Above nav */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--terra);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- Mobile Navigation --- */
@media (max-width: 992px) {
    nav, .nav-right {
        display: none;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }

    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }

    /* Active state: show menu when clicked */
    nav.active, .nav-right.active {
        display: flex;
    }
}

/* Optional: animate hamburger to X when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}