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

    :root {
        --navy: #0a1628;
        --navy-light: #1a2d4a;
        --gold: #C5A065;
        --gold-light: #d4b07a;
        --gold-dark: #a8854d;
        --white: #ffffff;
        --off-white: #f8f7f4;
        --cream: #f0ede6;
        --gray-100: #f5f5f5;
        --gray-200: #e5e5e5;
        --gray-300: #d4d4d4;
        --gray-400: #a3a3a3;
        --gray-500: #737373;
        --gray-600: #525252;
        --gray-700: #404040;
        --gray-800: #262626;
        --gray-900: #171717;
        
        --font-display: 'Cormorant Garamond', Georgia, serif;
        --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
        
        --nav-height: 80px;
        --container-max: 1280px;
        --container-padding: 24px;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: var(--font-body);
        font-weight: 300;
        color: var(--gray-800);
        background-color: var(--white);
        line-height: 1.7;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

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

    a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s ease;
    }

    button {
        cursor: pointer;
        border: none;
        background: none;
        font-family: inherit;
    }

    ul {
        list-style: none;
    }

    .container {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 var(--container-padding);
    }

    /* Loader */
    #loader {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.6s ease, visibility 0.6s ease;
    }

    #loader.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .loader-line {
        width: 60px;
        height: 2px;
        background: var(--gold);
        animation: loaderPulse 1s ease-in-out infinite;
    }

    @keyframes loaderPulse {
        0%, 100% { transform: scaleX(0.3); opacity: 0.3; }
        50% { transform: scaleX(1); opacity: 1; }
    }

    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: var(--nav-height);
        z-index: 1000;
        transition: background 0.4s ease, box-shadow 0.4s ease;
    }

    .navbar.scrolled {
        background: rgba(10, 22, 40, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(197, 160, 101, 0.1);
    }

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

    .logo {
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 0.85rem;
        letter-spacing: 0.35em;
        color: var(--white);
        text-transform: uppercase;
    }

    .nav-menu ul {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .nav-menu a {
        font-size: 0.75rem;
        font-weight: 400;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.7);
        transition: color 0.3s ease;
        position: relative;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover {
        color: var(--white);
    }

    .nav-menu a:hover::after {
        width: 100%;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
        display: none;
        flex-direction: column;
        gap: 6px;
        padding: 8px;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--white);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        inset: 0;
        background: var(--navy);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

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

    .mobile-menu a {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 300;
        color: var(--white);
        letter-spacing: 0.05em;
        transition: color 0.3s ease;
    }

    .mobile-menu a:hover {
        color: var(--gold);
    }

    .mobile-close {
        position: absolute;
        top: 24px;
        right: 24px;
        font-size: 2rem;
        color: var(--white);
        line-height: 1;
        padding: 8px;
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-family: var(--font-body);
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 16px 36px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .btn-primary {
        background: var(--gold);
        color: var(--navy);
        border: 1px solid var(--gold);
    }

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

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

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

    .btn-text {
        background: none;
        color: var(--white);
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .btn-text:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

    .btn-full {
        width: 100%;
    }

    /* Hero Section */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 700px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(10, 22, 40, 0.7) 0%,
            rgba(10, 22, 40, 0.5) 50%,
            rgba(10, 22, 40, 0.85) 100%
        );
    }

    .hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding-top: var(--nav-height);
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 24px;
    }

    .hero-title {
        font-family: var(--font-display);
        font-size: clamp(2.5rem, 6vw, 5rem);
        font-weight: 300;
        line-height: 1.1;
        color: var(--white);
        margin-bottom: 24px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.7);
        max-width: 480px;
        line-height: 1.8;
        margin-bottom: 48px;
    }

    .hero-actions {
        display: flex;
        align-items: center;
        gap: 32px;
    }

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

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

    @keyframes scrollLine {
        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; }
    }

    /* Section Styles */
    .section {
        padding: 120px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .section-label {
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 16px;
    }

    .section-title {
        font-family: var(--font-display);
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 300;
        color: var(--navy);
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .divider {
        width: 60px;
        height: 1px;
        background: var(--gold);
        margin: 0 auto;
    }

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

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

    .about-image {
        position: relative;
    }

    .about-image img {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    .about-image .image-frame {
        position: absolute;
        top: 24px;
        left: 24px;
        right: -24px;
        bottom: -24px;
        border: 1px solid var(--gold);
        pointer-events: none;
        z-index: -1;
    }

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

    .about-content .section-title {
        text-align: left;
        margin-bottom: 32px;
    }

    .about-content .lead {
        font-family: var(--font-display);
        font-size: 1.35rem;
        font-weight: 400;
        color: var(--navy);
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .about-content p {
        font-size: 0.9rem;
        color: var(--gray-600);
        line-height: 1.9;
        margin-bottom: 16px;
    }

    .about-stats {
        display: flex;
        gap: 48px;
        margin-top: 48px;
        padding-top: 48px;
        border-top: 1px solid var(--gray-200);
    }

    .stat {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .stat-number {
        font-family: var(--font-display);
        font-size: 2.5rem;
        font-weight: 300;
        color: var(--navy);
        line-height: 1;
    }

    .stat-label {
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--gray-500);
    }

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

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

    .service-card {
        background: var(--white);
        padding: 48px 32px;
        border: 1px solid var(--gray-200);
        transition: all 0.4s ease;
        position: relative;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .service-card:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-number {
        font-family: var(--font-display);
        font-size: 3rem;
        font-weight: 300;
        color: var(--gray-200);
        line-height: 1;
        margin-bottom: 24px;
        transition: color 0.4s ease;
    }

    .service-card:hover .service-number {
        color: var(--gold);
    }

    .service-card h3 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--navy);
        margin-bottom: 16px;
    }

    .service-card p {
        font-size: 0.85rem;
        color: var(--gray-600);
        line-height: 1.8;
    }

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

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 64px;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        aspect-ratio: auto;
    }

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

    .gallery-item:nth-child(1) { aspect-ratio: 4/5; }
    .gallery-item:nth-child(2) { aspect-ratio: 1; }
    .gallery-item:nth-child(3) { aspect-ratio: 2/3; }
    .gallery-item:nth-child(4) { aspect-ratio: 4/5; }
    .gallery-item:nth-child(5) { aspect-ratio: 3/4; }
    .gallery-item:nth-child(6) { aspect-ratio: 1; }

    .gallery-overlay {
        position: absolute;
        inset: 0;
        background: rgba(10, 22, 40, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .gallery-overlay span {
        font-family: var(--font-display);
        font-size: 1.25rem;
        font-weight: 400;
        color: var(--white);
        letter-spacing: 0.1em;
        border-bottom: 1px solid var(--gold);
        padding-bottom: 4px;
    }

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

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

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

    .gallery-cta p {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 300;
        font-style: italic;
        color: var(--navy);
        margin-bottom: 32px;
    }

    /* Process Section */
    .process {
        background: var(--navy);
        color: var(--white);
    }

    .process .section-label {
        color: var(--gold);
    }

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

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

    .process-image img {
        width: 100%;
        height: 700px;
        object-fit: cover;
    }

    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 48px;
        margin-top: 48px;
    }

    .step {
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 24px;
    }

    .step-num {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 300;
        color: var(--gold);
        line-height: 1;
        padding-top: 4px;
    }

    .step-header h4 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--white);
        margin-bottom: 8px;
    }

    .step p {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.8;
    }

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

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

    .contact-info .section-label {
        text-align: left;
    }

    .contact-info .section-title {
        text-align: left;
        margin-bottom: 24px;
    }

    .contact-intro {
        font-size: 0.9rem;
        color: var(--gray-600);
        line-height: 1.8;
        margin-bottom: 48px;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--gray-200);
        color: var(--gold);
        flex-shrink: 0;
    }

    .contact-item h4 {
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--gray-500);
        margin-bottom: 4px;
    }

    .contact-item p {
        font-size: 0.9rem;
        color: var(--navy);
        line-height: 1.6;
    }

    .contact-item a {
        color: var(--navy);
        border-bottom: 1px solid transparent;
        transition: border-color 0.3s ease;
    }

    .contact-item a:hover {
        border-color: var(--gold);
        color: var(--gold-dark);
    }

    /* Contact Form */
    .contact-form {
        background: var(--white);
        padding: 48px;
        border: 1px solid var(--gray-200);
    }

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

    .form-group label {
        display: block;
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--gray-500);
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 0;
        font-family: var(--font-body);
        font-size: 0.9rem;
        font-weight: 300;
        color: var(--navy);
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--gray-200);
        outline: none;
        transition: border-color 0.3s ease;
        -webkit-appearance: none;
        border-radius: 0;
    }

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

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-group select {
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0 center;
        padding-right: 32px;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: var(--gray-400);
    }

    .form-success {
        margin-top: 24px;
        padding: 20px;
        background: var(--navy);
        color: var(--white);
        font-size: 0.85rem;
        text-align: center;
    }

    /* Footer */
    .footer {
        background: var(--navy);
        color: var(--white);
        padding: 80px 0 40px;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding-bottom: 64px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 40px;
    }

    .footer-logo {
        font-family: var(--font-body);
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .footer-tagline {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.8;
        max-width: 240px;
    }

    .footer-links {
        display: flex;
        gap: 40px;
    }

    .footer-links a {
        font-size: 0.75rem;
        font-weight: 400;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.3s ease;
    }

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

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.3);
    }

    /* Reveal Animations */
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal-up {
        transform: translateY(40px);
    }

    .reveal-left {
        transform: translateX(-40px);
    }

    .reveal-right {
        transform: translateX(40px);
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
        }
        
        html {
            scroll-behavior: auto;
        }
        
        .reveal-up,
        .reveal-left,
        .reveal-right {
            opacity: 1;
            transform: none;
        }
    }

    /* Tablet */
    @media (max-width: 1024px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .about-grid,
        .process-layout,
        .contact-grid {
            gap: 48px;
        }
    }

    /* Mobile */
    @media (max-width: 768px) {
        :root {
            --nav-height: 70px;
        }

        .section {
            padding: 80px 0;
        }

        .nav-menu {
            display: none;
        }

        .menu-toggle {
            display: flex;
        }

        .hero {
            min-height: 600px;
        }

        .hero-content {
            padding-top: calc(var(--nav-height) + 40px);
        }

        .hero-actions {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }

        .about-grid,
        .process-layout,
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .about-image {
            order: -1;
        }

        .about-image img {
            height: 400px;
        }

        .about-image .image-frame {
            top: 16px;
            left: 16px;
            right: -16px;
            bottom: -16px;
        }

        .about-content .section-label,
        .about-content .section-title {
            text-align: center;
        }

        .about-content p {
            text-align: center;
        }

        .about-stats {
            justify-content: center;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .gallery-item:nth-child(1),
        .gallery-item:nth-child(3),
        .gallery-item:nth-child(5) {
            aspect-ratio: 4/5;
        }

        .gallery-item:nth-child(2),
        .gallery-item:nth-child(4),
        .gallery-item:nth-child(6) {
            aspect-ratio: 1;
        }

        .process-image {
            order: -1;
        }

        .process-image img {
            height: 400px;
        }

        .contact-form {
            padding: 32px 24px;
        }

        .footer-top {
            flex-direction: column;
            gap: 40px;
        }

        .footer-links {
            flex-wrap: wrap;
            gap: 24px;
        }

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

    @media (max-width: 480px) {
        .container {
            padding: 0 20px;
        }

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

        .about-stats {
            flex-direction: column;
            gap: 24px;
            align-items: center;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
        }

        .gallery-item {
            aspect-ratio: 4/5 !important;
        }
    }
