    :root {
        --plum-deep: #2E1A22;
        --plum-primary: #5D4037;
        --plum-light: #8D6E63;
        --amber-primary: #FFB300;
        --amber-dark: #FF8F00;
        --cream: #F5F5F0;
        --white: #FFFFFF;
        --black: #1A1A1A;
        --gray: #666666;
        
        --font-serif: 'Playfair Display', serif;
        --font-sans: 'Inter', sans-serif;
        
        --transition: all 0.3s ease;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-sans);
        color: var(--black);
        background-color: var(--cream);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Typography */
    h1, h2, h3, h4 {
        font-family: var(--font-serif);
        font-weight: 700;
        line-height: 1.2;
    }

    h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        color: var(--white);
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--plum-deep);
        margin-bottom: 1rem;
    }

    p {
        font-size: 1.1rem;
        color: var(--gray);
        margin-bottom: 1rem;
    }

    em {
        font-style: italic;
        color: var(--amber-primary);
    }

    /* Layout */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .section {
        padding: 6rem 0;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        font-family: var(--font-sans);
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
        transition: var(--transition);
        border: 2px solid transparent;
        cursor: pointer;
    }

    .btn-primary {
        background-color: var(--amber-primary);
        color: var(--plum-deep);
    }

    .btn-primary:hover {
        background-color: var(--amber-dark);
        transform: translateY(-2px);
    }

    .btn-outline {
        background-color: transparent;
        border-color: var(--white);
        color: var(--white);
    }

    .btn-outline:hover {
        background-color: var(--white);
        color: var(--plum-deep);
    }

    .btn-light {
        background-color: var(--plum-deep);
        color: var(--white);
        border-color: var(--plum-deep);
    }

    .btn-light:hover {
        background-color: transparent;
        color: var(--plum-deep);
    }

    .full-width {
        width: 100%;
        text-align: center;
    }

    /* Section Labels */
    .section-label {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--amber-primary);
        margin-bottom: 1rem;
    }

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

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 1.5rem 0;
        transition: var(--transition);
    }

    .navbar.scrolled {
        background-color: rgba(245, 245, 240, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        padding: 1rem 0;
    }

    .navbar.scrolled .logo {
        color: var(--plum-deep);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
        text-decoration: none;
        letter-spacing: 2px;
    }

    .logo span {
        color: var(--amber-primary);
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2.5rem;
        align-items: center;
    }

    .nav-links a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: var(--transition);
    }

    .nav-links a:not(.btn):hover {
        color: var(--amber-primary);
    }

    .navbar.scrolled .nav-links a:not(.btn) {
        color: var(--plum-deep);
    }

    .navbar.scrolled .nav-links a:not(.btn):hover {
        color: var(--amber-primary);
    }

    /* Mobile Menu */
    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .mobile-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--white);
        margin: 6px 0;
        transition: var(--transition);
    }

    .navbar.scrolled .mobile-toggle span {
        background-color: var(--plum-deep);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--plum-deep);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        transform: translateX(100%);
        transition: var(--transition);
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-link {
        font-family: var(--font-serif);
        font-size: 2rem;
        color: var(--white);
        text-decoration: none;
    }

    /* Hero */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--plum-deep) 0%, #4A2C35 50%, #2E1A22 100%);
        z-index: 1;
    }

    .hero-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.pexels.com/photos/1367277/pexels-photo-1367277.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
        background-size: cover;
        background-position: center;
        opacity: 0.2;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
    }

    .eyebrow {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--amber-primary);
        margin-bottom: 1.5rem;
    }

    .hero-sub {
        font-size: 1.25rem;
        color: rgba(255,255,255,0.8);
        margin-bottom: 2.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    .scroll-indicator span {
        display: block;
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, var(--amber-primary), transparent);
        animation: scroll 2s infinite;
    }

    @keyframes scroll {
        0% { transform: scaleY(0); transform-origin: top; }
        50% { transform: scaleY(1); transform-origin: top; }
        51% { transform-origin: bottom; }
        100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* About */
    .about {
        background-color: var(--cream);
    }

    .about-image {
        position: relative;
    }

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 4px;
    }

    .image-accent {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
        background-color: var(--amber-primary);
        z-index: -1;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(93, 64, 55, 0.2);
    }

    .stat-item h4 {
        font-size: 1.1rem;
        color: var(--plum-deep);
        margin-bottom: 0.5rem;
    }

    .stat-item p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    /* Services */
    .services {
        background-color: var(--white);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
    }

    .service-card {
        background-color: var(--cream);
        padding: 2.5rem;
        border-radius: 4px;
        transition: var(--transition);
        border-bottom: 3px solid transparent;
    }

    .service-card:hover {
        transform: translateY(-5px);
        border-bottom-color: var(--amber-primary);
        box-shadow: 0 10px 30px rgba(93, 64, 55, 0.1);
    }

    .service-card .icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
        color: var(--plum-primary);
    }

    .service-card .icon svg {
        width: 100%;
        height: 100%;
    }

    .service-card h3 {
        font-size: 1.5rem;
        color: var(--plum-deep);
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Approach */
    .approach {
        background-color: var(--plum-deep);
        color: var(--white);
        text-align: center;
        padding: 8rem 0;
    }

    .approach h2 {
        color: var(--white);
        max-width: 700px;
        margin: 0 auto 1.5rem;
    }

    .approach p {
        color: rgba(255,255,255,0.7);
        max-width: 600px;
        margin: 0 auto 2.5rem;
    }

    /* Contact */
    .contact {
        background-color: var(--cream);
    }

    .contact-grid {
        gap: 4rem;
    }

    .info-list {
        list-style: none;
        margin-top: 3rem;
    }

    .info-list li {
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .info-list .label {
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--plum-primary);
        margin-bottom: 0.5rem;
    }

    .info-list .value {
        font-family: var(--font-serif);
        font-size: 1.25rem;
        color: var(--plum-deep);
    }

    .info-list a {
        color: var(--plum-deep);
        text-decoration: none;
        transition: var(--transition);
    }

    .info-list a:hover {
        color: var(--amber-primary);
    }

    /* Form */
    .contact-form {
        background-color: var(--white);
        padding: 2.5rem;
        border-radius: 4px;
        box-shadow: 0 10px 40px rgba(93, 64, 55, 0.08);
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--plum-primary);
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 1px solid rgba(93, 64, 55, 0.2);
        border-radius: 4px;
        font-family: var(--font-sans);
        font-size: 1rem;
        background-color: var(--cream);
        transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--amber-primary);
        background-color: var(--white);
    }

    .form-success {
        text-align: center;
        padding: 2rem;
        background-color: #E8F5E9;
        border-radius: 4px;
        color: #2E7D32;
        font-weight: 600;
    }

    .hidden {
        display: none;
    }

    /* Footer */
    .footer {
        background-color: var(--plum-deep);
        color: var(--white);
        padding: 4rem 0 2rem;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .footer-brand p {
        color: rgba(255,255,255,0.6);
        font-size: 0.9rem;
    }

    .footer-legal {
        text-align: right;
    }

    .footer-legal p {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.5);
        margin-bottom: 0.5rem;
    }

    .footer-legal .disclaimer {
        font-size: 0.75rem;
        max-width: 400px;
        margin-left: auto;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .grid-2 {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .about-image {
            order: -1;
        }

        .image-accent {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .mobile-toggle {
            display: block;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .stats {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .footer-content {
            flex-direction: column;
            text-align: center;
        }

        .footer-legal {
            text-align: center;
        }

        .footer-legal .disclaimer {
            margin-left: 0;
        }
    }
