 
        :root {
            --brown-primary: #944F33;
            --brown-dark: #6B3A26;
            --peach: #F4A67F;
            --peach-light: #FCEEE6;
            --teal-dark: #0E4754;
            --teal: #166572;
            --teal-light: #1E8A9A;
            --cream: #FBF9F7;
            --white: #FFFFFF;
            --black: #1A1A1A;
            --gray: #6B7280;
            --gray-light: #E5E7EB;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--black);
            background: var(--cream);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 500;
            line-height: 1.2;
        }
        
        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
        
        p { font-size: 1.0625rem; }
        
        a {
            color: inherit;
            text-decoration: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s ease;
        }
        
        .nav.scrolled {
            background: rgba(251, 249, 247, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 40px rgba(0,0,0,0.08);
            padding: 12px 0;
        }
        
        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo img {
            height: 48px;
            width: auto;
            transition: height 0.3s ease;
        }
        
        .nav.scrolled .nav-logo img {
            height: 40px;
        }
        
        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }
        
        .nav-links a {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--white);
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav.scrolled .nav-links a {
            color: var(--black);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--brown-primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            background: var(--brown-primary);
            color: var(--white) !important;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: var(--brown-dark);
            transform: translateY(-2px);
        }
        
        .nav-cta::after {
            display: none !important;
        }
        
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }
        
        .nav-toggle span {
            width: 28px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }
        
        .nav.scrolled .nav-toggle span {
            background: var(--black);
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -1;
        }
        
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(14, 71, 84, 0.85) 0%, rgba(22, 101, 114, 0.7) 50%, rgba(148, 79, 51, 0.6) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            color: var(--white);
            padding: 120px 0;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--peach);
            border-radius: 50%;
        }
        
        .hero h1 {
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease 0.1s forwards;
            opacity: 0;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            line-height: 1.7;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }
        
        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.3s forwards;
            opacity: 0;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background: var(--brown-primary);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--brown-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(148, 79, 51, 0.3);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.5);
        }
        
        .btn-outline:hover {
            background: var(--white);
            color: var(--teal-dark);
            border-color: var(--white);
        }
        
        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 80px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.2);
            animation: fadeInUp 0.8s ease 0.4s forwards;
            opacity: 0;
        }
        
        .stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--peach);
        }
        
        .stat-label {
            font-size: 0.9375rem;
            opacity: 0.8;
            margin-top: 4px;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--white);
            opacity: 0.7;
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator span {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .scroll-indicator svg {
            width: 24px;
            height: 24px;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* About Section */
        .about {
            padding: 140px 0;
            background: var(--white);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            border-radius: 8px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--peach);
            border-radius: 8px;
            z-index: -1;
        }
        
        .section-label {
            display: inline-block;
            font-size: 0.8125rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--brown-primary);
            margin-bottom: 16px;
        }
        
        .about h2 {
            color: var(--teal-dark);
            margin-bottom: 24px;
        }
        
        .about-text {
            color: var(--gray);
            margin-bottom: 32px;
        }
        
        .credentials {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
        }
        
        .credential {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        
        .credential-icon {
            width: 48px;
            height: 48px;
            background: var(--peach-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .credential-icon svg {
            width: 24px;
            height: 24px;
            color: var(--brown-primary);
        }
        
        .credential-content h4 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 4px;
            color: var(--black);
        }
        
        .credential-content p {
            font-size: 0.9375rem;
            color: var(--gray);
        }
        
        /* Services Section */
        .services {
            padding: 140px 0;
            background: var(--teal-dark);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .services::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('img/tempImage74S8qY.jpg') center/cover;
            opacity: 0.1;
        }
        
        .services-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
            position: relative;
        }
        
        .services-header .section-label {
            color: var(--peach);
        }
        
        .services-header h2 {
            color: var(--white);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            position: relative;
        }
        
        .service-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 40px;
            transition: all 0.4s ease;
        }
        
        .service-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--brown-primary), var(--peach));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        
        .service-icon svg {
            width: 32px;
            height: 32px;
            color: var(--white);
        }
        
        .service-card h3 {
            margin-bottom: 16px;
            font-size: 1.5rem;
        }
        
        .service-card p {
            opacity: 0.8;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 24px;
        }
        
        .service-features {
            list-style: none;
        }
        
        .service-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            font-size: 0.9375rem;
            opacity: 0.9;
        }
        
        .service-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--peach);
            border-radius: 50%;
        }
        
        /* Process Section */
        .process {
            padding: 140px 0;
            background: var(--cream);
        }
        
        .process-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }
        
        .process-header h2 {
            color: var(--teal-dark);
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        .process-step {
            text-align: center;
            padding: 32px 24px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -12px;
            width: 24px;
            height: 2px;
            background: var(--peach);
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .step-number {
            width: 48px;
            height: 48px;
            background: var(--teal-dark);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0 auto 20px;
        }
        
        .process-step h4 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 1.0625rem;
            margin-bottom: 12px;
            color: var(--black);
        }
        
        .process-step p {
            font-size: 0.9375rem;
            color: var(--gray);
        }
        
        /* Projects/Gallery */
        .projects {
            padding: 140px 0;
            background: var(--white);
        }
        
        .projects-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
        }
        
        .projects-header h2 {
            color: var(--teal-dark);
        }
        
        .projects-header p {
            color: var(--gray);
            max-width: 500px;
            margin-top: 16px;
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 4/3;
            cursor: pointer;
        }
        
        .gallery-item:first-child {
            grid-column: span 2;
            grid-row: span 2;
            aspect-ratio: auto;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.08);
        }
        
        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(14, 71, 84, 0.8) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            color: var(--white);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 1;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
            opacity: 1;
        }
        
        .gallery-caption h4 {
            font-size: 1.125rem;
            margin-bottom: 4px;
        }
        
        .gallery-caption span {
            font-size: 0.875rem;
            opacity: 0.8;
        }
        
        /* Benefits */
        .benefits {
            padding: 140px 0;
            background: linear-gradient(135deg, var(--peach-light) 0%, var(--cream) 100%);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .benefits-content h2 {
            color: var(--teal-dark);
            margin-bottom: 24px;
        }
        
        .benefits-list {
            margin-top: 40px;
        }
        
        .benefit-item {
            display: flex;
            gap: 20px;
            padding: 24px 0;
            border-bottom: 1px solid rgba(148, 79, 51, 0.15);
        }
        
        .benefit-item:last-child {
            border-bottom: none;
        }
        
        .benefit-number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--brown-primary);
            line-height: 1;
        }
        
        .benefit-text h4 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 1.125rem;
            margin-bottom: 8px;
            color: var(--black);
        }
        
        .benefit-text p {
            color: var(--gray);
            font-size: 0.9375rem;
        }
        
        .benefits-image {
            position: relative;
        }
        
        .benefits-image img {
            border-radius: 8px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }
        
        .benefits-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--teal-dark);
            color: var(--white);
            padding: 24px 32px;
            border-radius: 8px;
            text-align: center;
        }
        
        .benefits-badge .value {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            display: block;
        }
        
        .benefits-badge .label {
            font-size: 0.875rem;
            opacity: 0.9;
        }
        
        /* CTA */
        .cta {
            padding: 120px 0;
            background: var(--teal-dark);
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(148, 79, 51, 0.3) 0%, transparent 60%);
        }
        
        .cta-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            color: var(--white);
        }
        
        .cta h2 {
            margin-bottom: 24px;
        }
        
        .cta p {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 40px;
        }
        
        .cta .btn-primary {
            background: var(--peach);
            color: var(--teal-dark);
        }
        
        .cta .btn-primary:hover {
            background: var(--white);
        }
        
        /* Contact */
        .contact {
            padding: 140px 0;
            background: var(--white);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
        }
        
        .contact-info h2 {
            color: var(--teal-dark);
            margin-bottom: 24px;
        }
        
        .contact-info > p {
            color: var(--gray);
            margin-bottom: 40px;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .contact-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        
        .contact-item-icon {
            width: 48px;
            height: 48px;
            background: var(--peach-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-item-icon svg {
            width: 22px;
            height: 22px;
            color: var(--brown-primary);
        }
        
        .contact-item h4 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 4px;
        }
        
        .contact-item p,
        .contact-item a {
            color: var(--gray);
            font-size: 0.9375rem;
        }
        
        .contact-item a:hover {
            color: var(--brown-primary);
        }
        
        .contact-form-wrapper {
            background: var(--cream);
            padding: 48px;
            border-radius: 12px;
        }
        
        .contact-form-wrapper h3 {
            margin-bottom: 8px;
            color: var(--teal-dark);
        }
        
        .contact-form-wrapper > p {
            color: var(--gray);
            margin-bottom: 32px;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group.full {
            grid-column: span 2;
        }
        
        .form-group label {
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--black);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 14px 16px;
            border: 1px solid var(--gray-light);
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(22, 101, 114, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-submit {
            margin-top: 24px;
        }
        
        .form-submit .btn {
            width: 100%;
            justify-content: center;
        }
        
        /* Footer */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 80px 0 40px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer-brand img {
            height: 60px;
            margin-bottom: 24px;
        }
        
        .footer-brand p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9375rem;
            line-height: 1.7;
            max-width: 300px;
        }
        
        .footer-links h4 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 24px;
        }
        
        .footer-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            font-size: 0.9375rem;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--peach);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 40px;
        }
        
        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 0.875rem;
        }
        
        .footer-social {
            display: flex;
            gap: 16px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--brown-primary);
        }
        
        .footer-social svg {
            width: 18px;
            height: 18px;
            color: var(--white);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .about-grid, .benefits-grid, .contact-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            .about-image::before { display: none; }
            .services-grid { grid-template-columns: 1fr; }
            .process-grid { grid-template-columns: repeat(2, 1fr); }
            .process-step::after { display: none; }
            .gallery { grid-template-columns: repeat(2, 1fr); }
            .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                background: var(--teal-dark);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 32px;
            }
            .nav-links.active { display: flex; }
            .nav-links a { color: var(--white) !important; font-size: 1.5rem; }
            .nav-toggle { display: flex; }
            .hero-stats { flex-wrap: wrap; gap: 32px; }
            .stat { flex: 1 1 40%; }
            .process-grid { grid-template-columns: 1fr; }
            .gallery { grid-template-columns: 1fr; }
            .gallery-item:first-child { grid-column: span 1; }
            .form-grid { grid-template-columns: 1fr; }
            .form-group.full { grid-column: span 1; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .projects-header { flex-direction: column; align-items: flex-start; gap: 24px; }
            .benefits-badge { position: relative; bottom: 0; right: 0; margin-top: 24px; }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
