:root {
            --vintage-gold: #c5a059;
            --deep-sepia: #2c1e13;
            --heritage-cream: #f9f5f0;
        }

        body {
            /* Background now inherited from style.css (Brown Wood Texture) */
            overflow-x: hidden;
            color: var(--bg-white);
            /* Ensure text is readable on dark background */
        }

        .heritage-hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../../images/heritage_legacy.webp') center/cover;
            color: white;
            padding: 20px;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 80px;
            font-weight: 900;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 5px;
            animation: fadeInUp 1.5s ease;
        }

        .hero-content p {
            font-size: 24px;
            letter-spacing: 3px;
            margin-top: 10px;
            font-weight: 300;
            animation: fadeInUp 2s ease;
        }

        .timeline-section {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 20px;
            position: relative;
        }

        .timeline-section::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--vintage-gold);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 120px;
            width: 100%;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            width: 45%;
            padding: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: 0.5s;
        }

        .timeline-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(184, 134, 11, 0.15);
        }

        .timeline-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: var(--primary-gold);
            margin-bottom: 15px;
        }

        .timeline-content p {
            line-height: 1.8;
            font-size: 16px;
            color: #555;
        }

        .timeline-img {
            width: 45%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            height: 350px;
        }

        .timeline-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 1s;
        }

        .timeline-item:hover .timeline-img img {
            transform: scale(1.1);
        }

        .year-indicator {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-gold);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 18px;
            z-index: 2;
        }

        .heritage-quote {
            text-align: center;
            padding: 150px 20px;
            background: var(--deep-sepia);
            color: white;
            margin-top: 100px;
        }

        .heritage-quote i {
            display: block;
            font-size: 40px;
            color: var(--primary-gold);
            margin-bottom: 30px;
        }

        .heritage-quote h3 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .heritage-quote p {
            margin-top: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--vintage-gold);
            font-weight: 700;
        }

        .process-section {
            background: white;
            padding: 120px 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            color: var(--dark-brown);
            margin-bottom: 20px;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .process-card {
            text-align: center;
        }

        .process-card .step-num {
            font-size: 60px;
            font-weight: 900;
            color: rgba(184, 134, 11, 0.1);
            margin-bottom: -30px;
        }

        .process-card h4 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark-brown);
        }

        .process-card p {
            color: #666;
            line-height: 1.6;
        }

        footer {
            background: #fff;
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid #eee;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 40px;
            }

            .timeline-section::before {
                left: 20px;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                flex-direction: column;
                align-items: flex-start;
            }

            .timeline-content,
            .timeline-img {
                width: 100%;
                margin-left: 40px;
            }

            .timeline-content {
                margin-top: 20px;
            }

            .year-indicator {
                left: 20px;
                transform: translateX(-50%) scale(0.8);
            }

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