        :root {
            --peach: #FFCDC9;
            --orange: #EB5B00;
            --white: #FFFFFF;
        }

        body {
            font-family: 'EB Garamond', serif;
            background-color: var(--white);
            color: #1a1a1a;
            margin: 0;
            overflow-x: hidden;
        }

        /* Parallax Engine */
        .parallax-bg {
            position: relative;
            height: 100vh;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .content-block {
            background: var(--white);
            position: relative;
            z-index: 10;
            padding: 100px 0;
        }

        /* Typography */
        h1, h2, h3 {
            color: var(--orange);
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        /* Header */
        header {
            background-color: var(--peach);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav-link {
            position: relative;
            color: var(--orange);
            font-weight: 600;
            transition: opacity 0.3s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: var(--orange);
            transition: width 0.3s;
        }
        .nav-link:hover::after { width: 100%; }

        /* Service Cards */
        .service-card {
            border: 1px solid var(--orange);
            transition: all 0.5s ease;
            cursor: pointer;
        }
        .service-card:hover {
            transform: translateY(-15px);
            background-color: var(--peach);
            box-shadow: 0 20px 40px rgba(235, 91, 0, 0.1);
        }

        /* Overlay Text Animation */
        .reveal-text {
            animation: reveal 1.5s ease-out forwards;
        }
        @keyframes reveal {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Portfolio Grid */
        .gallery-item {
            overflow: hidden;
            aspect-ratio: 1 / 1;
        }
        .gallery-item img {
            transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--white); }
        ::-webkit-scrollbar-thumb { background: var(--peach); }

        /* Modal / Multi-page Logic */
        .page-view { display: none; min-height: 100vh; padding-top: 120px; }
        .page-view.active { display: block; }
        
        #mobile-menu {
            transition: transform 0.4s ease-in-out;
            transform: translateX(100%);
        }
        #mobile-menu.open { transform: translateX(0); }

        .glass-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
