    :root {
        --navy: #0F172A;
        --navy-light: #1E293B;
        --gold: #D4AF37;
        --gold-light: #F3E5AB;
        --white: #FFFFFF;
        --off-white: #F8F9FA;
        --text-dark: #1A1A1A;
        --text-light: #64748B;
        --font-serif: 'Playfair Display', serif;
        --font-sans: 'Lato', sans-serif;
    }

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

    body {
        font-family: var(--font-sans);
        color: var(--text-dark);
        line-height: 1.6;
        background-color: var(--white);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

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

    .section-title {
        font-size: 2.5rem;
        color: var(--navy);
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 48px;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 14px 32px;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        border-radius: 4px;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .btn-primary {
        background-color: var(--navy);
        color: var(--white);
    }

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

    .btn-gold {
        background-color: var(--gold);
        color: var(--white);
    }

    .btn-gold:hover {
        background-color: #B8962E;
        transform: translateY(-2px);
    }

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

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

    .full-width {
        width: 100%;
    }

    /* Header */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
    }

    .logo {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        color: var(--navy);
        text-decoration: none;
        font-weight: 600;
    }

    .main-nav ul {
        display: flex;
        list-style: none;
        gap: 32px;
        align-items: center;
    }

    .main-nav a {
        text-decoration: none;
        color: var(--text-dark);
        font-size: 0.95rem;
        font-weight: 400;
        transition: color 0.3s ease;
    }

    .main-nav a:hover {
        color: var(--gold);
    }

    /* Mobile Menu */
    .mobile-menu-btn {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background-color: var(--navy);
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--navy);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-overlay nav ul {
        list-style: none;
        text-align: center;
    }

    .mobile-menu-overlay nav li {
        margin: 24px 0;
    }

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

    .close-menu-btn {
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        color: var(--white);
        font-size: 2.5rem;
        cursor: pointer;
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-title {
        font-size: 3.5rem;
        color: var(--navy);
        margin-bottom: 24px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        color: var(--text-light);
        margin-bottom: 40px;
        max-width: 480px;
    }

    .hero-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero-image-wrapper {
        position: relative;
    }

    .hero-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
    }

    /* Sections */
    .section {
        padding: 100px 0;
    }

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

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 32px;
    }

    .service-card {
        padding: 40px 32px;
        background-color: var(--off-white);
        border-radius: 8px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
        border-color: var(--gold);
    }

    .service-card h3 {
        font-size: 1.5rem;
        color: var(--navy);
        margin-bottom: 12px;
    }

    .service-card p {
        color: var(--text-light);
        font-size: 0.95rem;
    }

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

    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about .section-title {
        color: var(--white);
    }

    .about-content p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    .about-features {
        list-style: none;
        margin-top: 32px;
    }

    .about-features li {
        color: var(--gold);
        font-size: 1.1rem;
        margin-bottom: 12px;
        padding-left: 24px;
        position: relative;
    }

    .about-features li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 8px;
        height: 8px;
        background-color: var(--gold);
        border-radius: 50%;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }

    /* Gallery */
    .gallery {
        background-color: var(--off-white);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .gallery-item {
        overflow: hidden;
        border-radius: 8px;
        aspect-ratio: 1;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

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

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }

    .contact-text {
        color: var(--text-light);
        margin-bottom: 40px;
    }

    .info-item {
        margin-bottom: 24px;
    }

    .info-label {
        display: block;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-light);
        margin-bottom: 4px;
    }

    .info-value {
        font-size: 1.1rem;
        color: var(--navy);
        font-weight: 600;
    }

    .info-value a {
        color: var(--navy);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .info-value a:hover {
        color: var(--gold);
    }

    .contact-form-wrapper h3 {
        font-size: 1.8rem;
        color: var(--navy);
        margin-bottom: 32px;
    }

    .form-group {
        margin-bottom: 24px;
    }

    .form-group label {
        display: block;
        font-size: 0.9rem;
        color: var(--text-dark);
        margin-bottom: 8px;
        font-weight: 400;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #E2E8F0;
        border-radius: 4px;
        font-family: var(--font-sans);
        font-size: 1rem;
        transition: border-color 0.3s ease;
        background-color: var(--white);
    }

    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--gold);
    }

    .form-message {
        margin-top: 16px;
        padding: 16px;
        border-radius: 4px;
        text-align: center;
    }

    .form-message.success {
        background-color: #D1FAE5;
        color: #065F46;
    }

    .form-message.error {
        background-color: #FEE2E2;
        color: #991B1B;
    }

    /* Footer */
    .footer {
        background-color: var(--navy);
        color: rgba(255, 255, 255, 0.6);
        padding: 40px 0;
        text-align: center;
    }

    .footer p {
        margin-bottom: 8px;
        font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .hero-container,
        .about-container,
        .contact-wrapper {
            grid-template-columns: 1fr;
            gap: 40px;
        }

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

        .hero {
            padding-top: 80px;
            min-height: auto;
        }

        .main-nav {
            display: none;
        }

        .mobile-menu-btn {
            display: flex;
        }
    }

    @media (max-width: 640px) {
        .section-title {
            font-size: 2rem;
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-actions {
            flex-direction: column;
        }

        .btn {
            text-align: center;
        }

        .section {
            padding: 60px 0;
        }
    }
</style>
