:root {
            --color-gold:       #BFA065;
            --color-gold-dark:  #8C6F4A;
            --color-cream:      #F2EBC9;
            --color-dark-green: #0A160A;
            --color-maroon:     #260101;
            --color-white:      #ffffff;
        }

        * { box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #fff;
            color: var(--color-dark-green);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        ::selection {
            background: var(--color-gold);
            color: var(--color-dark-green);
        }

        .page-section {
            display: none;
            animation: fadeIn 0.45s ease-in-out;
        }
        .page-section.active { display: block; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .site-navbar {
            background: rgba(255,255,255,0.97) !important;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(140,111,74,0.2);
            padding: 10px 0;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: -0.05em;
            color: var(--color-maroon) !important;
            cursor: pointer;
        }
        .navbar-brand span { color: var(--color-gold); }

        .navbar-toggler {
            border: 1.5px solid rgba(140,111,74,0.5);
            border-radius: 6px;
            padding: 0.35rem 0.6rem;
        }
        .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(191,160,101,0.25); }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%238C6F4A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }

        .navbar-collapse {
            background: rgba(255,255,255,0.97);
        }
        @media (max-width: 991.98px) {
            .navbar-collapse {
                border-top: 1px solid rgba(140,111,74,0.15);
                padding: 0.75rem 0 1rem;
            }
        }

        .nav-link-custom {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--color-dark-green) !important;
            transition: color 0.2s;
            background: none;
            border: none;
            padding: 0.5rem 0.25rem;
            display: block;
            width: 100%;
            text-align: left;
        }
        @media (min-width: 992px) {
            .nav-link-custom {
                width: auto;
                padding: 0.25rem 0;
            }
        }
        .nav-link-custom:hover,
        .nav-link-custom.active {
            color: var(--color-gold) !important;
        }

        .btn-gold {
            background: var(--color-gold);
            color: var(--color-dark-green);
            font-weight: 600;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            transition: opacity 0.2s, box-shadow 0.2s;
        }
        .btn-gold:hover {
            opacity: 0.9;
            box-shadow: 0 4px 15px rgba(191,160,101,0.35);
            color: var(--color-dark-green);
        }

        .btn-outline-gold {
            background: transparent;
            color: var(--color-gold-dark);
            font-weight: 600;
            border: 2px solid var(--color-gold-dark);
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .btn-outline-gold:hover {
            background: var(--color-gold-dark);
            color: #fff;
        }

        .card-cream {
            background: var(--color-cream);
            border: 1px solid rgba(140,111,74,0.2);
            border-radius: 12px;
            transition: transform 0.3s;
        }
        .card-cream:hover { transform: translateY(-4px); }

        .icon-box {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-maroon);
            font-size: 1.25rem;
        }

        .trust-bar {
            background: var(--color-cream);
            border-top: 1px solid rgba(140,111,74,0.2);
            border-bottom: 1px solid rgba(140,111,74,0.2);
        }
        .trust-bar .trust-divider {
            width: 1px;
            height: 32px;
            background: rgba(140,111,74,0.3);
        }

        .hero-eyebrow {
            color: var(--color-gold-dark);
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-size: 0.875rem;
        }
        .hero-title {
            font-size: clamp(2rem, 5vw, 3.75rem);
            font-weight: 700;
            color: var(--color-maroon);
            line-height: 1.15;
        }
        .hero-sub {
            font-size: clamp(1rem, 2vw, 1.35rem);
            line-height: 1.6;
            opacity: 0.9;
        }

        .eco-card-left  { border-left: 4px solid var(--color-gold) !important; }
        .eco-card-right { border-right: 4px solid var(--color-gold-dark) !important; }
        .eco-card-dark  { border-left: 4px solid var(--color-maroon) !important; }

        .eco-icon {
            font-size: 5rem;
            color: var(--color-gold-dark);
            line-height: 1;
        }
        .eco-icon-dark { color: var(--color-maroon); }

        .avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-maroon);
        }
        .avatar-gold { background: var(--color-gold); }
        .avatar-brown { background: var(--color-gold-dark); }

        .corp-top {
            background: var(--color-maroon);
            border-radius: 12px;
            color: #fff;
        }
        .corp-connector {
            width: 2px;
            height: 32px;
            background: var(--color-gold-dark);
            margin: 0 auto;
        }
        .corp-bottom {
            background: var(--color-cream);
            border: 2px solid var(--color-gold);
            border-radius: 12px;
        }

        .seed-card {
            background: var(--color-dark-green);
            border-radius: 12px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .seed-card::before {
            content: '';
            position: absolute;
            top: -40px; right: -40px;
            width: 128px; height: 128px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            filter: blur(20px);
        }

        .step-num {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-gold-dark);
            font-weight: 700;
            flex-shrink: 0;
        }

        .form-control-custom, .form-select-custom {
            background: #fff;
            border: 1px solid rgba(140,111,74,0.3);
            border-radius: 6px;
            padding: 0.75rem;
            color: var(--color-dark-green);
            width: 100%;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.2s, box-shadow 0.2s;
            outline: none;
        }
        .form-control-custom::placeholder { color: #9ca3af; }
        .form-control-custom:focus,
        .form-select-custom:focus {
            border-color: var(--color-gold);
            box-shadow: 0 0 0 3px rgba(191,160,101,0.2);
        }
        textarea.form-control-custom { resize: vertical; }

        .form-label-custom {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-dark-green);
        }

        .site-footer {
            background: var(--color-dark-green);
            color: var(--color-cream);
        }
        .site-footer a,
        .site-footer button {
            color: rgba(242,235,201,0.7);
            background: none;
            border: none;
            padding: 0;
            transition: color 0.2s;
        }
        .site-footer a:hover,
        .site-footer button:hover { color: var(--color-gold); }
        .footer-divider { border-color: rgba(242,235,201,0.1) !important; }

        .text-gold      { color: var(--color-gold) !important; }
        .text-gold-dark { color: var(--color-gold-dark) !important; }
        .text-maroon    { color: var(--color-maroon) !important; }
        .bg-cream       { background: var(--color-cream) !important; }
        .section-divider {
            width: 48px;
            height: 1px;
            background: rgba(140,111,74,0.3);
        }

        main { padding-top: 0; }

        .logo-img {
    height: 60px;
    width: 100%;
    object-fit: contain;
}

.logo-wrapper {
    width: 80px;
    height: 80px;
    background: #ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img-footer {
    height: 60px;
    width: 100%;
    object-fit: contain;
}

.footer-text{
    color: #f2ebc9b3;
    font-size: 0.875rem;
    max-width: 280px;
}

/* Video Cards */
.video-card {
    background: var(--color-cream, #f5f0e0);
    border: 1px solid rgba(140, 111, 74, 0.2);
    border-radius: 16px;
}

.video-card video {
    border-radius: 10px;
    background: #000;
}

/* Location Cards */
.location-card {
    background: var(--color-cream, #f5f0e0);
    border: 1px solid rgba(140, 111, 74, 0.2);
    border-radius: 16px;
    transition: box-shadow 0.2s ease;
}

.location-card:hover {
    box-shadow: 0 6px 24px rgba(140, 111, 74, 0.15);
}