:root {
            --primary-gold: #B89664;
            --dark-charcoal: #1A1A1A;
            --soft-white: #F9F7F2;
            --muted-gray: #707070;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--soft-white);
            color: var(--dark-charcoal);
            overflow-x: hidden;
            line-height: 1.7;
        }

        h1, h2, h3, h4, .font-serif { font-family: 'Playfair Display', serif; }

        /* Navigation */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            transition: var(--transition);
            border-bottom: 1px solid rgba(184, 150, 100, 0.1);
            z-index: 1000;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--dark-charcoal) !important;
            font-size: 1.2rem;
            line-height: 1;
        }

        .nav-link {
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 1.5px;
            font-weight: 500;
            margin: 0 0.8rem;
            color: var(--dark-charcoal) !important;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primary-gold);
            transition: var(--transition);
        }

        .nav-link:hover::after, .nav-link.active::after { width: 100%; }

        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=2000') center/cover;
            padding: 150px 0 80px;
            color: white;
            text-align: center;
        }

        section { padding: 100px 0; }

        .section-title span {
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--primary-gold);
            font-size: 0.85rem;
            display: block;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .section-title h2 { font-size: 2.8rem; color: var(--dark-charcoal); font-weight: 400; }

        .value-card {
            background: white;
            padding: 3rem;
            height: 100%;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }

        .value-card:hover {
            border-bottom: 3px solid var(--primary-gold);
            transform: translateY(-5px);
        }

        .stat-circle {
            width: 150px;
            height: 150px;
            border: 1px solid var(--primary-gold);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
        }

        .division-box {
            background-color: #fff;
            padding: 2.5rem;
            border: 1px solid #eee;
            transition: var(--transition);
        }

        .division-box:hover {
            background-color: var(--dark-charcoal);
            color: white;
        }

        footer { background-color: var(--dark-charcoal); color: white; padding: 80px 0 30px; }
        .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1.5rem; display: block; letter-spacing: 2px; }
        .footer-link { color: #aaa; text-decoration: none; display: block; margin-bottom: 0.8rem; transition: var(--transition); font-size: 0.9rem; }
        .footer-link:hover { color: var(--primary-gold); }

        @media (max-width: 768px) {
            .section-title h2 { font-size: 2rem; }
        }