        /* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: #1A1A2E;
            background: #FFFFFF;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        ul, ol {
            list-style: none;
        }

        button, input, textarea, select {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
        }

        * {
            border-radius: 0 !important;
        }

        /* ============================================
           TYPOGRAPHY
           ============================================ */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
            font-weight: 400;
            line-height: 1.2;
            color: #1A1A2E;
        }

        .label-uppercase {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #8B1A1A;
        }

        /* ============================================
           LAYOUT
           ============================================ */
        .container {
            max-width: 1340px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .section-padding {
            padding: 120px 0;
        }

        /* ============================================
           DEMO BANNER
           ============================================ */
        .demo-banner {
            background: linear-gradient(135deg, #7C3AED, #a855f7);
            color: #FFFFFF;
            text-align: center;
            padding: 14px 20px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            position: relative;
            z-index: 1001;
        }

        .demo-banner a {
            color: #FFFFFF;
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .demo-banner a:hover {
            opacity: 0.85;
        }

        /* ============================================
           HEADER
           ============================================ */
        .site-header {
            background: #FFFFFF;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .site-header.scrolled {
            border-bottom-color: #E8E4DE;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 32px;
            height: 90px;
            max-width: 1340px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-main {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #1A1A2E;
            line-height: 1;
        }

        .logo-sub {
            font-family: 'Inter', sans-serif;
            font-size: 0.65rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #8B1A1A;
            font-variant: small-caps;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .main-nav a {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            color: #1A1A2E;
            padding: 8px 20px;
            position: relative;
            transition: color 0.3s ease;
            letter-spacing: 0.3px;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20px;
            right: 20px;
            height: 2px;
            background: #8B1A1A;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .main-nav a:hover {
            color: #8B1A1A;
        }

        .main-nav a:hover::after {
            transform: scaleX(1);
        }

        .nav-dropdown-wrapper {
            position: relative;
        }

        .nav-dropdown-wrapper > a {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-dropdown-wrapper > a .dropdown-arrow {
            width: 10px;
            height: 10px;
            display: inline-flex;
            transition: transform 0.3s ease;
        }

        .nav-dropdown-wrapper:hover > a .dropdown-arrow {
            transform: rotate(180deg);
        }

        .mega-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: 860px;
            background: #FFFFFF;
            border: 1px solid #E8E4DE;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            padding: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr 0.8fr;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .nav-dropdown-wrapper:hover .mega-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .mega-col h4 {
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #8B1A1A;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid #E8E4DE;
        }

        .mega-col a {
            display: block;
            font-size: 0.9rem;
            color: #444;
            padding: 8px 0;
            transition: color 0.2s ease, padding-left 0.2s ease;
        }

        .mega-col a:hover {
            color: #8B1A1A;
            padding-left: 8px;
        }

        .mega-col a::after {
            display: none;
        }

        .mega-cta-col {
            background: #FAFAF5;
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .mega-cta-col h4 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.1rem;
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0;
            color: #1A1A2E;
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 12px;
        }

        .mega-cta-col p {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .btn-burgundy {
            display: inline-block;
            background: #8B1A1A;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 14px 28px;
            letter-spacing: 0.5px;
            transition: background 0.3s ease;
            cursor: pointer;
            text-align: center;
            border: none;
        }

        .btn-burgundy:hover {
            background: #6B1414;
            color: #FFFFFF;
        }

        .mega-cta-col .btn-burgundy,
        .header-cta.btn-burgundy,
        .mobile-nav-overlay .btn-burgundy {
            color: #FFFFFF !important;
        }

        .btn-outline {
            display: inline-block;
            background: transparent;
            color: #1A1A2E;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 14px 28px;
            letter-spacing: 0.5px;
            border: 2px solid #1A1A2E;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

        .btn-outline:hover {
            background: #1A1A2E;
            color: #FFFFFF;
        }

        .btn-outline-light {
            display: inline-block;
            background: transparent;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 14px 28px;
            letter-spacing: 0.5px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.7);
            color: #FFFFFF;
        }

        .header-cta {
            margin-left: 20px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
            width: 32px;
            height: 32px;
            cursor: pointer;
            z-index: 1002;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: #1A1A2E;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        /* ============================================
           MOBILE NAV OVERLAY
           ============================================ */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #FFFFFF;
            z-index: 999;
            padding: 120px 32px 40px;
            overflow-y: auto;
        }

        .mobile-nav-overlay.active {
            display: block;
        }

        .mobile-nav-overlay a {
            display: block;
            font-family: 'Libre Baskerville', serif;
            font-size: 1.1rem;
            color: #1A1A2E;
            padding: 12px 0;
            border-bottom: 1px solid #E8E4DE;
            transition: color 0.3s ease;
        }

        .mobile-nav-overlay a:hover {
            color: #8B1A1A;
        }

        .mobile-nav-overlay .mobile-cta {
            margin-top: 32px;
        }

        .mobile-nav-overlay .btn-burgundy {
            width: 100%;
            padding: 18px 28px;
            font-size: 1rem;
        }

        .mobile-nav-sub {
            padding-left: 24px;
        }

        .mobile-nav-sub a {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            border-bottom-color: #F0ECE6;
        }

        /* ============================================
           PAGE HERO
           ============================================ */
        .page-hero {
            padding: 80px 0 60px;
            background: #FFFFFF;
        }

        .page-hero .label-uppercase {
            display: block;
            margin-bottom: 20px;
        }

        .page-hero h1 {
            font-size: 3.6rem;
            font-weight: 400;
            color: #1A1A2E;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .breadcrumb a {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #8B1A1A;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #6B1414;
        }

        .breadcrumb .separator {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            color: #999;
        }

        .breadcrumb .current {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #999;
        }

        .page-hero-divider {
            width: 100%;
            height: 1px;
            background: #E8E4DE;
            margin-top: 20px;
        }

        /* ============================================
           SERVICES GRID (from index)
           ============================================ */
        .services-section {
            background: #FAFAF5;
        }

        .section-header {
            margin-bottom: 72px;
        }

        .section-header .label-uppercase {
            margin-bottom: 20px;
            display: block;
        }

        .section-header h2 {
            font-size: 3rem;
            max-width: 600px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .service-item {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 24px;
            padding: 40px 32px 40px 0;
            border-top: 1px solid #D4D0CA;
            align-items: start;
            transition: background 0.3s ease;
        }

        .service-item:nth-child(even) {
            padding-left: 48px;
            border-left: 1px solid #D4D0CA;
        }

        .service-item:hover {
            background: rgba(139, 26, 26, 0.03);
        }

        .service-number {
            font-family: 'Libre Baskerville', serif;
            font-size: 2rem;
            font-weight: 700;
            color: #8B1A1A;
            opacity: 0.4;
            line-height: 1;
            padding-top: 4px;
        }

        .service-content h3 {
            font-size: 1.35rem;
            font-weight: 400;
            margin-bottom: 12px;
            color: #1A1A2E;
        }

        .service-content p {
            font-size: 0.92rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .service-link {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #8B1A1A;
            transition: letter-spacing 0.3s ease;
        }

        .service-link:hover {
            letter-spacing: 2.5px;
        }

        /* ============================================
           CTA SECTION
           ============================================ */
        .cta-section {
            background: #1A1A2E;
            text-align: center;
        }

        .cta-section h2 {
            color: #FFFFFF;
            font-size: 2.8rem;
            margin-bottom: 16px;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.55);
            font-size: 1rem;
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto 40px;
        }

        .cta-section .btn-burgundy {
            padding: 16px 36px;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .site-footer {
            background: #0F0F1A;
            padding: 80px 0 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 56px;
        }

        .footer-col .footer-logo {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #FFFFFF;
            margin-bottom: 16px;
        }

        .footer-col p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.7;
            margin-bottom: 8px;
        }

        .footer-col h4 {
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.35);
            margin-bottom: 24px;
        }

        .footer-col a {
            display: block;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.55);
            padding: 6px 0;
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: #FFFFFF;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.35);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.55);
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #FFFFFF;
        }

        .footer-bottom-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .footer-bottom-right a {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.35);
        }

        /* ============================================
           SCROLL ANIMATIONS
           ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
        }

        .reveal.revealed {
            animation: revealUp 0.7s ease forwards;
        }

        .reveal-delay-1 { animation-delay: 0.1s !important; }
        .reveal-delay-2 { animation-delay: 0.2s !important; }
        .reveal-delay-3 { animation-delay: 0.3s !important; }
        .reveal-delay-4 { animation-delay: 0.4s !important; }
        .reveal-delay-5 { animation-delay: 0.5s !important; }
        .reveal-delay-6 { animation-delay: 0.6s !important; }

        @keyframes revealUp {
            from {
                opacity: 0;
                transform: translateY(32px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1100px) {
            .page-hero h1 {
                font-size: 2.8rem;
            }

            .section-header h2 {
                font-size: 2.4rem;
            }

            .cta-section h2 {
                font-size: 2.2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 968px) {
            .section-padding {
                padding: 80px 0;
            }

            .main-nav,
            .header-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-item:nth-child(even) {
                padding-left: 0;
                border-left: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 20px;
            }

            .section-padding {
                padding: 64px 0;
            }

            .header-inner {
                height: 72px;
                padding: 0 20px;
            }

            .logo-main {
                font-size: 1.2rem;
                letter-spacing: 3px;
            }

            .logo-sub {
                font-size: 0.58rem;
            }

            .page-hero {
                padding: 48px 0 40px;
            }

            .page-hero h1 {
                font-size: 2.2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom-right {
                flex-direction: column;
                gap: 12px;
            }

            .demo-banner {
                font-size: 0.8rem;
                padding: 12px 16px;
            }

            .mobile-nav-overlay {
                padding: 100px 20px 40px;
            }

            .mobile-nav-overlay a {
                font-size: 1.1rem;
                padding: 12px 0;
            }
        }
