   :root {
            --cream: #FFEAC5;
            --espresso: #603F26;
            --white: #ffffff;
            --paper: #fcf9f2;
        }

        body {
            font-family: 'Antic Slab', serif;
            background-color: var(--cream);
            color: var(--espresso);
            margin: 0;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* HEADER */
        .header-nav {
            background-color: rgba(255, 234, 197, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(96, 63, 38, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.4s ease;
        }

        .nav-link {
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--espresso);
            transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* HERO ASYMMETRIC COLLAGE */
        .hero-section {
            height: 95vh;
            position: relative;
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://i.pinimg.com/1200x/f1/0d/66/f10d668fbd0c4dc9dab0cd10b269394e.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 5%;
        }

        .hero-card-left {
            background: var(--cream);
            padding: 3rem;
            width: 60%;
            height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
            z-index: 2;
            transform: translateY(20px);
        }

        .hero-card-right {
            background: #fff;
            width: 30%;
            height: 550px;
            margin-left: -90px;
            z-index: 3;
            overflow: hidden;
            box-shadow: 30px 30px 80px rgba(0,0,0,0.15);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* EXPERIENCE ZONE */
        .fixed-bg-section {
            display: flex;
            min-height: 100vh;
            background: #fff;
        }

        .fixed-content {
            width: 50%;
            padding: 10% 8%;
        }

        .fixed-image-pane {
            width: 50%;
            background-image: url('https://i.pinimg.com/1200x/2b/5f/43/2b5f43b39083af8dffc4b6f0dcebc4c8.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .pane-overlay {
            position: absolute;
            bottom: 50px;
            left: -50px;
            background: var(--espresso);
            color: var(--cream);
            padding: 2rem;
            max-width: 350px;
        }

        /* CARD WALL */
        .menu-card {
            background: white;
            padding: 2rem;
            border: 1px solid rgba(96, 63, 38, 0.1);
            transition: all 0.5s ease;
            cursor: pointer;
        }

        .menu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(96, 63, 38, 0.1);
        }

        .steam-line {
            height: 1px;
            background: var(--espresso);
            width: 0;
            transition: width 0.8s ease;
        }

        .menu-card:hover .steam-line {
            width: 100%;
        }

        /* FOOTER */
        footer {
            background: var(--espresso);
            color: var(--cream);
            padding: 80px 5% 40px;
        }

        /* MODAL */
        #modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            z-index: 5000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: var(--paper);
            max-width: 700px;
            width: 90%;
            padding: 3rem;
            position: relative;
            border-top: 10px solid var(--espresso);
        }

        .page-node { display: none; }
        .page-node.active { display: block; animation: fadeIn 0.8s ease; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* FORM */
        .steam-input {
            border: none;
            border-bottom: 1px solid rgba(96, 63, 38, 0.3);
            background: transparent;
            padding: 10px 0;
            width: 100%;
            outline: none;
            transition: border-color 0.4s;
        }
        .steam-input:focus {
            border-bottom: 2px solid var(--espresso);
        }

        .handwritten {
            font-family: 'Antic Slab', serif; /* Would ideally use a script font if linked */
            font-style: italic;
            opacity: 0.8;
        }