    /* --- Variables & Reset --- */
    :root {
        --bg-dark: #0F0A12;
        --bg-card: #1A1220;
        --bg-card-hover: #23182B;
        --plum-dark: #2D1B30;
        --plum-light: #4A2C4A;
        --gold: #D4AF37;
        --gold-light: #F3E5AB;
        --gold-dim: #B8962E;
        --text-white: #FFFFFF;
        --text-gray: #B8B8B8;
        --text-muted: #888888;
        --font-heading: 'Playfair Display', serif;
        --font-body: 'Montserrat', sans-serif;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: var(--bg-dark);
        color: var(--text-white);
        font-family: var(--font-body);
        line-height: 1.6;
        overflow-x: hidden;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
    }

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        display: block;
    }

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

    .gold-text {
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.85rem;
        font-weight: 600;
        display: block;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 1rem;
        color: var(--text-white);
    }

    .section-desc {
        color: var(--text-gray);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    /* --- Layout --- */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-padding {
        padding: 5rem 0;
    }

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

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

    .btn-primary {
        background-color: var(--gold);
        color: var(--bg-dark);
        border-color: var(--gold);
    }

    .btn-primary:hover {
        background-color: transparent;
        color: var(--gold);
    }

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

    .btn-outline:hover {
        background-color: var(--text-white);
        color: var(--bg-dark);
    }

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

    .btn-outline-light:hover {
        background-color: var(--gold);
        color: var(--bg-dark);
    }

    .btn-block {
        width: 100%;
    }

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

    header.scrolled {
        background-color: rgba(15, 10, 18, 0.95);
        padding: 1rem 0;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

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

    .logo {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-white);
        letter-spacing: 2px;
    }

    .logo .dot {
        color: var(--gold);
    }

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

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-white);
        position: relative;
    }

    .nav-links a:not(.btn):after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--gold);
        transition: var(--transition);
    }

    .nav-links a:not(.btn):hover:after {
        width: 100%;
    }

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

    /* Mobile Menu */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1002;
    }

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

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(15, 10, 18, 0.98);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

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

    .close-menu-btn {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: none;
        border: none;
        color: var(--text-white);
        cursor: pointer;
    }

    .mobile-menu-overlay nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

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

    .mobile-link.highlight {
        color: var(--gold);
        margin-top: 1rem;
    }

    /* --- Hero Section --- */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-image: url('https://images.pexels.com/photos/7447130/pexels-photo-7447130.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(45, 27, 48, 0.85) 0%, rgba(15, 10, 18, 0.9) 100%);
    }

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

    .hero-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.8rem;
        color: var(--gold);
    }

    .hero-badge .line {
        width: 40px;
        height: 1px;
        background-color: var(--gold);
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-title .text-gold {
        color: var(--gold);
        font-style: italic;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        color: var(--text-gray);
        margin-bottom: 2.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-muted);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .scroll-indicator .line {
        width: 1px;
        height: 40px;
        background: linear-gradient(to bottom, var(--gold), transparent);
    }

    /* --- Features --- */
    .features {
        background-color: var(--bg-dark);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .feature-card {
        background-color: var(--bg-card);
        padding: 2.5rem;
        border-radius: 4px;
        border: 1px solid rgba(212, 175, 55, 0.1);
        transition: var(--transition);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        border-color: var(--gold);
        background-color: var(--bg-card-hover);
    }

    .icon-box {
        width: 60px;
        height: 60px;
        background-color: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: var(--gold);
    }

    .icon-box svg {
        width: 28px;
        height: 28px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--text-white);
    }

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

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

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

    .service-card {
        background-color: var(--bg-card);
        border-radius: 4px;
        overflow: hidden;
        transition: var(--transition);
        border: 1px solid transparent;
    }

    .service-card:hover {
        border-color: var(--gold);
        transform: translateY(-5px);
    }

    .service-img {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

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

    .service-card:hover .service-img img {
        transform: scale(1.05);
    }

    .service-overlay {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background-color: var(--gold);
        color: var(--bg-dark);
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .service-info {
        padding: 1.5rem;
    }

    .service-info h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        color: var(--text-white);
    }

    .service-info p {
        color: var(--text-gray);
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .link-arrow {
        color: var(--gold);
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .link-arrow:hover {
        gap: 0.8rem;
    }

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

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

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

    .about-img-main {
        position: relative;
        z-index: 2;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .about-img-main img {
        width: 100%;
        height: auto;
    }

    .about-img-secondary {
        position: absolute;
        bottom: -2rem;
        right: -2rem;
        width: 60%;
        z-index: 3;
        border: 4px solid var(--bg-dark);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .about-img-secondary img {
        width: 100%;
        height: auto;
    }

    .experience-badge {
        position: absolute;
        top: -1.5rem;
        left: -1.5rem;
        background-color: var(--gold);
        color: var(--bg-dark);
        padding: 1.5rem;
        border-radius: 50%;
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 4;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .experience-badge .number {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
    }

    .experience-badge .label {
        font-size: 0.6rem;
        text-transform: uppercase;
        font-weight: 700;
    }

    .about-content .section-title {
        text-align: left;
    }

    .about-text {
        color: var(--text-gray);
        margin-bottom: 1.5rem;
    }

    .about-list {
        margin-bottom: 2rem;
    }

    .about-list li {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        color: var(--text-white);
        font-weight: 500;
    }

    .about-list svg {
        width: 20px;
        height: 20px;
        color: var(--gold);
    }

    /* --- Gallery --- */
    .gallery {
        background-color: var(--bg-card);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 4px;
        aspect-ratio: 3/4;
        cursor: pointer;
    }

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

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

    .gallery-item:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(45, 27, 48, 0.8), transparent);
        opacity: 0;
        transition: var(--transition);
    }

    .gallery-item:hover:after {
        opacity: 1;
    }

    /* --- Contact --- */
    .contact {
        background-color: var(--bg-dark);
        position: relative;
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        background-color: var(--plum-dark);
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .contact-info {
        padding: 4rem;
    }

    .contact-info .section-title {
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .contact-info > p {
        color: var(--text-gray);
        margin-bottom: 3rem;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .detail-item {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .detail-item .icon {
        width: 50px;
        height: 50px;
        background-color: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        flex-shrink: 0;
    }

    .detail-item .icon svg {
        width: 24px;
        height: 24px;
    }

    .detail-item h4 {
        font-family: var(--font-body);
        font-size: 1rem;
        margin-bottom: 0.3rem;
        color: var(--text-white);
    }

    .detail-item p, .detail-item a {
        color: var(--text-gray);
        font-size: 0.95rem;
    }

    .detail-item a:hover {
        color: var(--gold);
    }

    .contact-form-wrapper {
        background-color: var(--bg-card);
        padding: 4rem;
        border-left: 1px solid rgba(212, 175, 55, 0.1);
    }

    .contact-form h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        color: var(--text-white);
    }

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

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--text-gray);
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        background-color: var(--bg-dark);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 2px;
        color: var(--text-white);
        font-family: var(--font-body);
        font-size: 1rem;
        transition: var(--transition);
    }

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

    .form-group textarea {
        resize: vertical;
    }

    .form-success {
        text-align: center;
        padding: 2rem;
    }

    .form-success.hidden {
        display: none;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        background-color: var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        color: var(--bg-dark);
    }

    .success-icon svg {
        width: 30px;
        height: 30px;
    }

    .form-success h4 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--text-white);
    }

    .form-success p {
        color: var(--text-gray);
    }

    /* --- Footer --- */
    footer {
        background-color: #08050A;
        padding: 3rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand .logo {
        margin-bottom: 1rem;
    }

    .footer-brand p {
        color: var(--text-muted);
        font-size: 0.9rem;
    }

    .footer-links {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        color: var(--text-gray);
        font-size: 0.9rem;
    }

    .footer-links a:hover {
        color: var(--gold);
    }

    .footer-copy {
        color: var(--text-muted);
        font-size: 0.8rem;
    }

    .footer-copy p {
        margin-bottom: 0.3rem;
    }

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

        .about-image-wrapper {
            max-width: 500px;
            margin: 0 auto;
        }

        .contact-wrapper {
            grid-template-columns: 1fr;
        }

        .contact-info, .contact-form-wrapper {
            padding: 2rem;
        }
    }

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

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

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

        .hero-buttons {
            flex-direction: column;
            width: 100%;
        }

        .hero-buttons .btn {
            width: 100%;
        }

        .about-img-secondary {
            right: 0;
            bottom: -1rem;
        }

        .experience-badge {
            left: 0;
            top: -1rem;
        }
    }

    @media (max-width: 480px) {
        .section-padding {
            padding: 3rem 0;
        }
        
        .section-title {
            font-size: 2rem;
        }
    }
