    /* Variables */
    :root {
        --charcoal: #1a1a1a;
        --charcoal-light: #2d2d2d;
        --coral: #FF6B6B;
        --coral-dark: #E85A5A;
        --white: #ffffff;
        --off-white: #f4f4f4;
        --gray-text: #888888;
        --font-display: 'Syne', sans-serif;
        --font-body: 'Inter', sans-serif;
    }

    /* Reset & Base */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

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

    /* Noise Texture Overlay */
    .noise-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 9999;
        opacity: 0.03;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }

    /* Typography */
    h1, h2, h3 {
        font-family: var(--font-display);
        font-weight: 800;
        line-height: 1.1;
    }

    .eyebrow {
        display: block;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--coral);
        margin-bottom: 1rem;
    }

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

    .section-header {
        margin-bottom: 4rem;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        cursor: pointer;
    }

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

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

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

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

    .btn-lg {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }

    .btn-block {
        width: 100%;
    }

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

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 1.25rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-family: var(--font-display);
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--charcoal);
        text-decoration: none;
        letter-spacing: -0.02em;
    }

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

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

    .nav-links a {
        text-decoration: none;
        color: var(--charcoal);
        font-weight: 500;
        transition: color 0.3s ease;
    }

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

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

    .bar {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--charcoal);
        margin: 6px 0;
        transition: all 0.3s ease;
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--charcoal);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

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

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

    .mobile-link:hover {
        color: var(--coral);
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 80px;
        position: relative;
        overflow: hidden;
        background-color: var(--off-white);
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .headline {
        font-size: clamp(3rem, 6vw, 5rem);
        color: var(--charcoal);
        margin-bottom: 1.5rem;
        line-height: 1;
    }

    .subheadline {
        font-size: 1.25rem;
        color: #555;
        margin-bottom: 2.5rem;
        max-width: 480px;
    }

    .cta-group {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Hero Image */
    .hero-image-wrapper {
        position: relative;
    }

    .image-frame {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 100%;
        height: 100%;
        border: 4px solid var(--coral);
        z-index: -1;
    }

    .hero-img {
        width: 100%;
        height: auto;
        display: block;
        background-color: var(--charcoal);
    }

    .floating-badge {
        position: absolute;
        bottom: 2rem;
        left: -1.5rem;
        background-color: var(--white);
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-family: var(--font-display);
        font-weight: 700;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .badge-icon {
        color: var(--coral);
        font-size: 1.25rem;
    }

    /* Geometric Shapes */
    .geo-shape {
        position: absolute;
        z-index: 1;
    }

    .geo-circle-1 {
        width: 400px;
        height: 400px;
        background-color: var(--coral);
        border-radius: 50%;
        top: -100px;
        right: -100px;
        opacity: 0.1;
    }

    .geo-square-1 {
        width: 150px;
        height: 150px;
        background-color: var(--charcoal);
        bottom: 10%;
        left: 5%;
        transform: rotate(15deg);
        opacity: 0.05;
    }

    /* Services Section */
    .services {
        padding: 8rem 0;
        position: relative;
        background-color: var(--white);
    }

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

    .service-card {
        background-color: var(--off-white);
        padding: 2.5rem;
        border-radius: 0;
        border-left: 4px solid var(--coral);
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        background-color: var(--white);
    }

    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

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

    .service-card p {
        color: #555;
        font-size: 0.95rem;
    }

    .bg-accent-right {
        position: absolute;
        right: 0;
        top: 20%;
        width: 300px;
        height: 300px;
        background-color: var(--coral);
        opacity: 0.05;
        z-index: 0;
    }

    /* About Section */
    .about {
        padding: 8rem 0;
        background-color: var(--charcoal);
        color: var(--white);
    }

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

    .about-image {
        position: relative;
    }

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

    .image-overlay {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 80%;
        height: 80%;
        border: 4px solid var(--coral);
        z-index: -1;
    }

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

    .about-content p {
        color: #aaa;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

    .feature-list {
        list-style: none;
        margin-top: 2rem;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        font-weight: 500;
    }

    .check-icon {
        color: var(--coral);
        font-weight: 700;
    }

    /* Gallery Section */
    .gallery {
        padding: 8rem 0;
        background-color: var(--off-white);
    }

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

    .gallery-item {
        overflow: hidden;
        position: relative;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 4/5;
        transition: transform 0.5s ease;
        display: block;
    }

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

    /* Contact Section */
    .contact {
        padding: 8rem 0;
        background-color: var(--white);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        background-color: var(--charcoal);
        color: var(--white);
        padding: 4rem;
    }

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

    .contact-desc {
        color: #aaa;
        margin-bottom: 2.5rem;
    }

    .info-item {
        margin-bottom: 1.5rem;
    }

    .info-label {
        display: block;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--coral);
        margin-bottom: 0.25rem;
    }

    .info-value {
        font-size: 1.25rem;
        color: var(--white);
        text-decoration: none;
    }

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

    .contact-form-container {
        background-color: var(--white);
        padding: 2.5rem;
        color: var(--charcoal);
    }

    .contact-form-container h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

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

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 1rem;
        border: 1px solid #ddd;
        font-family: var(--font-body);
        font-size: 1rem;
        background-color: var(--off-white);
    }

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

    .success-message {
        margin-top: 1rem;
        padding: 1rem;
        background-color: #e8f5e9;
        color: #2e7d32;
        text-align: center;
        font-weight: 500;
    }

    /* Footer */
    .footer {
        background-color: var(--charcoal);
        color: var(--white);
        padding: 4rem 0 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem;
    }

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

    .footer-brand p {
        color: #888;
    }

    .footer-links {
        display: flex;
        gap: 2rem;
    }

    .footer-links a {
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 2rem;
        text-align: center;
        color: #666;
        font-size: 0.875rem;
    }

    /* Scroll Animations */
    .reveal {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.hidden {
        opacity: 0;
        transform: translateY(30px);
    }

    /* Responsive */
    @media (max-width: 900px) {
        .nav-links {
            display: none;
        }

        .mobile-toggle {
            display: block;
        }

        .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .subheadline {
            margin-left: auto;
            margin-right: auto;
        }

        .cta-group {
            justify-content: center;
        }

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

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

        .about-image {
            order: -1;
        }

        .contact-wrapper {
            padding: 2rem;
        }
    }

    @media (max-width: 600px) {
        .headline {
            font-size: 2.5rem;
        }

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

        .cta-group {
            flex-direction: column;
        }

        .floating-badge {
            left: 0;
        }

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