        :root {
            --primary: #594100;
            --accent: #FFC470;
            --header-bg: #DBDBDB;
            --white: #FFFFFF;
            --black: #000000;
        }

        body {
            font-family: 'Instrument Sans', sans-serif;
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .font-script { font-family: 'Quintessential', cursive; }
        .instrument-bold { font-weight: 700; }
        .instrument-reg { font-weight: 400; }

        /* Animation Keyframes */
        @keyframes revealUp {
            from { transform: translateY(100px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .animate-reveal { animation: revealUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards; }
        .animate-fade { animation: fadeIn 1.5s ease-out forwards; opacity: 0; }

        /* Hero Structure */
        .hero-split {
            display: flex;
            min-height: 100vh;
            width: 100%;
        }

        .hero-left {
            width: 40%;
            background: var(--white);
            padding: 40px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .hero-right {
            width: 60%;
            background: var(--primary);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 0 40px;
        }

        /* Small Header Box */
        .small-header {
            background: var(--header-bg);
            width: 100%;
            max-width: 500px;
            height: 60px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            margin-bottom: 80px;
        }

        /* Drag/Swipe Slider */
        .slider-viewport {
            width: 100%;
            cursor: grab;
            user-select: none;
            display: flex;
            gap: 30px;
            transition: transform 0.1s ease-out;
        }

        .scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}
.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

        .slider-viewport:active { cursor: grabbing; }

        .hero-card {
            min-width: 320px;
            background: white;
            border-radius: 20px;
            padding: 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .hero-card:hover { transform: scale(1.05) translateY(-10px); }

        /* Multi-page Views */
        .page-content { display: none; }
        .page-content.active { display: block; }

        /* Custom CTA Buttons */
        .btn-care {
            padding: 15px 35px;
            font-weight: 700;
            border-radius: 4px;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid transparent;
        }
        .btn-care-primary { background: var(--primary); color: white; }
        .btn-care-accent { background: var(--accent); color: var(--black); }
        .btn-care-primary:hover { background: var(--accent); color: var(--black); }
        .btn-care-accent:hover { background: var(--primary); color: white; }

        /* Overlay Menu */
        #menu-overlay {
            position: fixed;
            inset: 0;
            background: var(--primary);
            z-index: 999;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        #menu-overlay.active { display: flex; opacity: 1; }

        @media (max-width: 1024px) {
            .hero-split { flex-direction: column; }
            .hero-left, .hero-right { width: 100%; min-height: 50vh; }
            .small-header { margin-bottom: 40px; }
        }

        /* Scroll Reveal Utility */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
