 :root {
            --ivory: #FDFBF7;
            --warm-white: #FAF8F3;
            --soft-beige: #E8E3D8;
            --taupe: #C4B5A0;
            --charcoal: #2D2D2D;
            --slate-gray: #5A5A5A;
            --gold: #C9A961;
            --rich-gold: #B8941F;
            --emerald: #2F5D50;
            --dark-emerald: #1F4037;
            --accent-cream: #F4F0E8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            background: var(--ivory);
            color: var(--charcoal);
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(253, 251, 247, 0.97);
            backdrop-filter: blur(15px);
            z-index: 1000;
            border-bottom: 1px solid rgba(201, 169, 97, 0.15);
            animation: slideDown 0.7s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .nav-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 1.3rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Gilda Display', serif;
            font-size: 1.8rem;
            color: var(--charcoal);
            letter-spacing: 2px;
            font-weight: 400;
        }

        .logo span {
            color: var(--gold);
            font-style: italic;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--charcoal);
            font-size: 0.95rem;
            font-weight: 400;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s;
            text-transform: uppercase;
            font-size: 0.85rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--emerald);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .menu-toggle span {
            width: 30px;
            height: 2px;
            background: var(--charcoal);
            transition: all 0.3s;
        }

        /* Hero Section */
        .hero {
            margin-top: 85px;
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.75);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(47, 93, 80, 0.4) 0%, rgba(201, 169, 97, 0.3) 100%);
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 10;
            width: 90%;
            max-width: 900px;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate(-50%, -40%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        .hero-subtitle {
            font-family: 'Lato', sans-serif;
            font-size: 0.95rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: var(--gold);
            font-weight: 300;
        }

        .hero-title {
            font-family: 'Gilda Display', serif;
            font-size: 5.5rem;
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: 3px;
        }

        .hero-description {
            font-size: 1.25rem;
            margin-bottom: 3rem;
            font-weight: 300;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
        }

        .btn-primary, .btn-secondary {
            padding: 1.2rem 3rem;
            font-size: 0.9rem;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .btn-primary {
            background: var(--gold);
            color: white;
            box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
        }

        .btn-primary:hover {
            background: var(--rich-gold);
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(201, 169, 97, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--charcoal);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translate(-50%, 0); }
            50% { transform: translate(-50%, 10px); }
        }

        /* Services Section */
        .services {
            padding: 10rem 3rem;
            background: var(--warm-white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
            animation: fadeInUp 0.8s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-subtitle {
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .section-title {
            font-family: 'Gilda Display', serif;
            font-size: 3.5rem;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            font-weight: 400;
            letter-spacing: 2px;
        }

        .section-description {
            font-size: 1.15rem;
            color: var(--slate-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.9;
        }

        .service-grid {
            max-width: 1500px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .service-card {
            background: white;
            overflow: hidden;
            position: relative;
            transition: all 0.5s ease;
            cursor: pointer;
            animation: fadeInUp 0.8s ease;
            animation-fill-mode: both;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        }

        .service-image {
            height: 400px;
            overflow: hidden;
            position: relative;
        }

        .service-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 100%);
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 3rem;
            background: white;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--emerald), var(--gold));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .service-content h3 {
            font-family: 'Gilda Display', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--charcoal);
            font-weight: 400;
        }

        .service-content p {
            color: var(--slate-gray);
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .service-link {
            color: var(--emerald);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
            letter-spacing: 1px;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .service-link:hover {
            gap: 1rem;
            color: var(--gold);
        }

        /* About Section */
        .about {
            padding: 10rem 3rem;
            background: white;
        }

        .about-content {
            max-width: 1500px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Gilda Display', serif;
            font-size: 3.5rem;
            color: var(--charcoal);
            margin-bottom: 2rem;
            font-weight: 400;
            letter-spacing: 2px;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--slate-gray);
            margin-bottom: 1.8rem;
            line-height: 2;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: var(--warm-white);
            border-top: 3px solid var(--gold);
        }

        .stat-number {
            font-family: 'Gilda Display', serif;
            font-size: 3rem;
            color: var(--emerald);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--slate-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-images {
            position: relative;
            height: 600px;
        }

        .about-img-main {
            position: absolute;
            width: 70%;
            height: 500px;
            right: 0;
            top: 0;
            overflow: hidden;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
        }

        .about-img-secondary {
            position: absolute;
            width: 50%;
            height: 400px;
            left: 0;
            bottom: 0;
            overflow: hidden;
            border: 12px solid white;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
        }

        .about-img-main img, .about-img-secondary img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-accent {
            position: absolute;
            width: 150px;
            height: 150px;
            border: 2px solid var(--gold);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 10rem 3rem;
            background: var(--accent-cream);
        }

        .portfolio-grid {
            max-width: 1600px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .portfolio-item {
            position: relative;
            height: 450px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.4s ease;
        }

        .portfolio-item:hover {
            transform: scale(1.02);
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.15);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(47, 93, 80, 0.9) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2.5rem;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-overlay h3 {
            font-family: 'Gilda Display', serif;
            font-size: 1.8rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .portfolio-overlay p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 10rem 3rem;
            background: var(--emerald);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 97, 0.1) 100%);
        }

        .testimonial-grid {
            max-width: 1500px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 4rem;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            padding: 3.5rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: transform 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
        }

        .quote-mark {
            font-family: 'Gilda Display', serif;
            font-size: 5rem;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .testimonial-text {
            font-size: 1.15rem;
            line-height: 2;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold), var(--rich-gold));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Gilda Display', serif;
            font-size: 1.8rem;
        }

        .author-info h5 {
            font-family: 'Gilda Display', serif;
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
            font-weight: 400;
        }

        .author-info p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Blog Section */
        .blog {
            padding: 10rem 3rem;
            background: white;
        }

        .blog-grid {
            max-width: 1500px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
        }

        .blog-card {
            background: var(--warm-white);
            overflow: hidden;
            transition: transform 0.4s ease;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-10px);
        }

        .blog-image {
            height: 350px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 3rem;
        }

        .blog-meta {
            display: flex;
            gap: 2rem;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
            color: var(--slate-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-content h3 {
            font-family: 'Gilda Display', serif;
            font-size: 1.8rem;
            color: var(--charcoal);
            margin-bottom: 1rem;
            line-height: 1.4;
            font-weight: 400;
        }

        .blog-content p {
            color: var(--slate-gray);
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .read-more {
            color: var(--emerald);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .read-more:hover {
            gap: 1rem;
            color: var(--gold);
        }

        /* Contact Section */
        .contact {
            padding: 10rem 3rem;
            background: var(--warm-white);
        }

        .contact-content {
            max-width: 1500px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 5rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .contact-item {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--emerald), var(--gold));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-family: 'Gilda Display', serif;
            font-size: 1.5rem;
            color: var(--charcoal);
            margin-bottom: 0.8rem;
            font-weight: 400;
        }

        .contact-details p {
            font-size: 1.05rem;
            color: var(--slate-gray);
            line-height: 1.8;
        }

        .contact-details a {
            color: var(--emerald);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-details a:hover {
            color: var(--gold);
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 55px;
            height: 55px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--emerald);
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s;
            border: 2px solid var(--soft-beige);
        }

        .social-link:hover {
            background: var(--emerald);
            color: white;
            transform: translateY(-5px);
        }

        .contact-form {
            background: white;
            padding: 4rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1.2rem;
            border: 2px solid var(--soft-beige);
            background: var(--warm-white);
            font-size: 1rem;
            font-family: 'Lato', sans-serif;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--gold);
            background: white;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .btn-submit {
            width: 100%;
            padding: 1.3rem;
            background: var(--emerald);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background: var(--dark-emerald);
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(47, 93, 80, 0.3);
        }

        .map-container {
            margin-top: 4rem;
            height: 450px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background: var(--charcoal);
            color: white;
            padding: 5rem 3rem 2rem;
        }

        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-section h3 {
            font-family: 'Gilda Display', serif;
            font-size: 1.6rem;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 1rem;
            transition: color 0.3s;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            max-width: 1500px;
            margin: 0 auto;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 4rem;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 1.3rem 1.5rem;
            }

            .nav-links {
                position: fixed;
                top: 85px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 85px);
                background: var(--ivory);
                flex-direction: column;
                padding: 3rem;
                transition: left 0.3s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .about-images {
                height: 500px;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .portfolio-grid,
            .blog-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .services,
            .about,
            .portfolio,
            .testimonials,
            .blog,
            .contact {
                padding: 6rem 1.5rem;
            }

            .contact-form {
                padding: 2.5rem;
            }
        }
