        :root {
            --forest: #1B4332;
            --forest-dark: #0D2818;
            --forest-light: #2D6A4F;
            --sage: #8FB996;
            --sage-light: #B7D7BE;
            --sage-pale: #DAE8DC;
            --cream: #F8F5EF;
            --cream-dark: #EDE6D8;
            --white: #FFFFFF;
            --text: #2E2E2E;
            --text-light: #6B6B6B;
            --gold: #C9A84C;
            --gold-light: #E8D48B;
            --font-heading: 'Playfair Display', Georgia, serif;
            --font-body: 'Montserrat', 'Segoe UI', sans-serif;
            --shadow-sm: 0 2px 12px rgba(27,67,50,0.07);
            --shadow-md: 0 8px 30px rgba(27,67,50,0.1);
            --shadow-lg: 0 16px 50px rgba(27,67,50,0.14);
            --shadow-glow: 0 0 40px rgba(143,185,150,0.25);
            --radius: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body); color: var(--text);
            background: var(--cream); line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: var(--forest); text-decoration: none; transition: color var(--transition); }
        a:hover { color: var(--forest-light); }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--forest); line-height: 1.2; font-weight: 600; }
        h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
        h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
        h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

        .section-label {
            font-family: var(--font-body);
            text-transform: uppercase; letter-spacing: 4px;
            font-size: 0.72rem; font-weight: 600;
            color: var(--sage); margin-bottom: 14px; display: block;
        }
        .section-divider {
            width: 60px; height: 3px;
            background: linear-gradient(90deg, var(--sage), var(--forest-light));
            border: none; margin: 0 0 30px; border-radius: 2px;
        }
        .section-divider.center { margin: 0 auto 30px; }

        /* ---- LOADER ---- */
        .page-loader {
            position: fixed; inset: 0; z-index: 9999;
            background: var(--forest-dark);
            display: flex; align-items: center; justify-content: center;
            transition: opacity 0.5s, visibility 0.5s;
        }
        .page-loader.hidden { opacity: 0; visibility: hidden; }
        .loader-leaf {
            width: 60px; height: 60px;
            animation: loaderSpin 1.2s ease-in-out infinite;
        }
        @keyframes loaderSpin {
            0% { transform: rotate(0deg) scale(1); opacity: 1; }
            50% { transform: rotate(180deg) scale(1.1); opacity: 0.7; }
            100% { transform: rotate(360deg) scale(1); opacity: 1; }
        }

        /* ---- TOP BAR ---- */
        .top-bar {
            background: var(--forest-dark);
            color: var(--sage-light);
            font-size: 0.78rem; padding: 10px 0;
            letter-spacing: 0.5px;
            border-bottom: 1px solid rgba(143,185,150,0.1);
        }
        .top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
        .top-bar-text { display: flex; align-items: center; gap: 8px; }
        .top-bar-text::before {
            content: ''; display: inline-block; width: 8px; height: 8px;
            background: var(--sage); border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
        .top-bar-contact { display: flex; gap: 20px; }
        .top-bar-contact a {
            color: var(--sage-light);
            display: flex; align-items: center; gap: 6px;
            font-weight: 500; font-size: 0.78rem;
            transition: all var(--transition);
        }
        .top-bar-contact a:hover { color: var(--white); transform: translateY(-1px); }
        .top-bar-social { display: flex; gap: 12px; }
        .top-bar-social a {
            width: 28px; height: 28px; border-radius: 50%;
            background: rgba(143,185,150,0.15);
            display: flex; align-items: center; justify-content: center;
            color: var(--sage-light); transition: all var(--transition);
        }
        .top-bar-social a:hover { background: var(--sage); color: var(--forest-dark); transform: scale(1.1); }

        /* ---- HEADER ---- */
        .site-header {
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(27,67,50,0.06);
            position: sticky; top: 0; z-index: 1000;
            transition: all var(--transition);
        }
        .site-header.scrolled {
            box-shadow: var(--shadow-md);
            background: rgba(255,255,255,0.97);
        }
        .header-inner {
            display: flex; align-items: center;
            justify-content: space-between; height: 80px;
        }
        .logo-link { display: flex; align-items: center; gap: 14px; }
        .logo-mark { width: 52px; height: 52px; flex-shrink: 0; transition: transform var(--transition); }
        .logo-link:hover .logo-mark { transform: rotate(10deg) scale(1.05); }
        .logo-svg { width: 100%; height: 100%; }
        .logo-text { display: flex; flex-direction: column; }
        .logo-name {
            font-family: var(--font-heading);
            font-size: 1.3rem; font-weight: 700;
            color: var(--forest); line-height: 1.2;
        }
        .logo-tagline {
            font-size: 0.7rem; color: var(--sage);
            text-transform: uppercase; letter-spacing: 2.5px; font-weight: 500;
        }
        .main-nav { display: flex; gap: 6px; align-items: center; }
        .main-nav a {
            padding: 8px 18px; font-size: 0.88rem; font-weight: 500;
            color: var(--text); border-radius: 8px; position: relative;
            transition: all var(--transition);
        }
        .main-nav a::after {
            content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
            background: var(--forest-light); border-radius: 1px;
            transition: all var(--transition); transform: translateX(-50%);
        }
        .main-nav a:hover, .main-nav a.active { color: var(--forest); }
        .main-nav a:hover::after, .main-nav a.active::after { width: 20px; }
        .nav-cta {
            margin-left: 10px; padding: 10px 22px !important;
            background: var(--forest) !important; color: var(--white) !important;
            border-radius: 50px !important; font-weight: 600 !important;
            font-size: 0.82rem !important; letter-spacing: 0.5px;
        }
        .nav-cta:hover { background: var(--forest-light) !important; transform: translateY(-2px); box-shadow: var(--shadow-md); }
        .nav-cta::after { display: none !important; }

        /* Mobile Menu */
        .mobile-toggle {
            display: none; width: 44px; height: 44px;
            background: none; border: 2px solid var(--sage-pale);
            border-radius: 10px; cursor: pointer; position: relative;
            transition: all var(--transition); align-items: center; justify-content: center;
        }
        .mobile-toggle:hover { border-color: var(--sage); }
        .mobile-toggle span {
            display: block; width: 20px; height: 2px;
            background: var(--forest); border-radius: 2px;
            transition: all var(--transition); position: absolute;
        }
        .mobile-toggle span:nth-child(1) { transform: translateY(-6px); }
        .mobile-toggle span:nth-child(3) { transform: translateY(6px); }
        .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg); }
        .mobile-toggle.active span:nth-child(2) { opacity: 0; }
        .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg); }

        .mobile-nav {
            display: none; position: fixed; inset: 0; z-index: 999;
            background: rgba(13,40,24,0.95); backdrop-filter: blur(20px);
            flex-direction: column; align-items: center; justify-content: center; gap: 10px;
            opacity: 0; transition: opacity var(--transition);
        }
        .mobile-nav.open { display: flex; opacity: 1; }
        .mobile-nav a {
            color: var(--white); font-size: 1.4rem; font-family: var(--font-heading);
            padding: 12px 30px; border-radius: 8px;
            transition: all var(--transition);
        }
        .mobile-nav a:hover { background: rgba(143,185,150,0.15); color: var(--sage-light); }

        /* ---- HERO ---- */
        .hero {
            position: relative; min-height: 92vh;
            display: flex; align-items: center;
            overflow: hidden; background: var(--forest-dark);
        }
        .hero-bg {
            position: absolute; inset: 0;
            background: linear-gradient(160deg, rgba(13,40,24,0.95) 0%, rgba(27,67,50,0.85) 40%, rgba(45,106,79,0.75) 70%, rgba(27,67,50,0.9) 100%);
            z-index: 1;
        }
        .hero-bg::before {
            content: ''; position: absolute; inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaf" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M25 5 Q32 18 25 30 Q18 18 25 5z" fill="rgba(143,185,150,0.04)" transform="rotate(15 25 17)"/></pattern></defs><rect fill="url(%23leaf)" width="100" height="100"/></svg>');
            background-size: 200px;
        }
        /* Floating leaves */
        .hero-particles {
            position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none;
        }
        .leaf-particle {
            position: absolute; opacity: 0;
            animation: floatLeaf linear infinite;
        }
        @keyframes floatLeaf {
            0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
        }
        .hero-content { position: relative; z-index: 2; max-width: 720px; padding: 80px 0; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(143,185,150,0.15); border: 1px solid rgba(143,185,150,0.25);
            border-radius: 50px; padding: 8px 20px;
            font-size: 0.78rem; font-weight: 500; color: var(--sage);
            text-transform: uppercase; letter-spacing: 2px;
            margin-bottom: 28px; backdrop-filter: blur(10px);
            opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
        }
        .hero-badge svg { animation: pulse 2s infinite; }
        .hero h1 {
            color: var(--white); font-weight: 700;
            margin-bottom: 16px; letter-spacing: -0.5px;
            opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
        }
        .hero h1 em {
            font-style: italic; color: var(--sage-light);
            position: relative;
        }
        .hero h1 em::after {
            content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
            height: 3px; background: var(--sage);
            border-radius: 2px; opacity: 0.5;
        }
        .hero-subtitle {
            font-size: 1.15rem; color: rgba(183,215,190,0.9);
            font-weight: 300; line-height: 1.9;
            margin-bottom: 40px; max-width: 560px;
            opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
        }
        .hero-actions {
            display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
            opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
        }
        .hero-trust {
            display: flex; align-items: center; gap: 20px;
            margin-top: 50px; padding-top: 40px;
            border-top: 1px solid rgba(143,185,150,0.15);
            opacity: 0; animation: fadeUp 0.8s 1s forwards;
        }
        .hero-trust-item {
            display: flex; flex-direction: column;
        }
        .hero-trust-item strong {
            font-family: var(--font-heading); font-size: 1.8rem;
            color: var(--white); font-weight: 700;
        }
        .hero-trust-item span { font-size: 0.75rem; color: var(--sage); text-transform: uppercase; letter-spacing: 1.5px; }
        .hero-trust-divider {
            width: 1px; height: 40px; background: rgba(143,185,150,0.2);
        }
        /* Decorative circle */
        .hero-decor {
            position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
            width: 500px; height: 500px; border-radius: 50%;
            border: 1px solid rgba(143,185,150,0.08);
            z-index: 1; pointer-events: none;
        }
        .hero-decor::after {
            content: ''; position: absolute; inset: 40px;
            border-radius: 50%; border: 1px solid rgba(143,185,150,0.06);
        }

        /* ---- BUTTONS ---- */
        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 15px 34px; font-family: var(--font-body);
            font-size: 0.88rem; font-weight: 600;
            border-radius: 50px; border: 2px solid transparent;
            cursor: pointer; transition: all var(--transition);
            letter-spacing: 0.5px; position: relative; overflow: hidden;
        }
        .btn::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
            opacity: 0; transition: opacity var(--transition);
        }
        .btn:hover::before { opacity: 1; }
        .btn-primary {
            background: var(--sage); color: var(--forest-dark); border-color: var(--sage);
        }
        .btn-primary:hover {
            background: var(--sage-light); border-color: var(--sage-light);
            transform: translateY(-3px); box-shadow: 0 10px 30px rgba(143,185,150,0.4);
        }
        .btn-outline {
            background: transparent; color: var(--white);
            border-color: rgba(255,255,255,0.25);
        }
        .btn-outline:hover {
            background: rgba(255,255,255,0.08); border-color: var(--sage); color: var(--white);
            transform: translateY(-3px);
        }
        .btn-forest {
            background: var(--forest); color: var(--white); border-color: var(--forest);
        }
        .btn-forest:hover {
            background: var(--forest-light); border-color: var(--forest-light);
            transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--white);
        }
        .btn-gold {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--forest-dark); border: none; font-weight: 700;
        }
        .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,168,76,0.35); }

        /* ---- SECTIONS ---- */
        .section { padding: 100px 0; }
        .section-alt { background: var(--white); }

        /* ---- SERVICES ---- */
        .services-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px;
        }
        .service-card {
            background: var(--white); border-radius: var(--radius-lg);
            padding: 40px 30px; position: relative;
            border: 1px solid rgba(143,185,150,0.12);
            transition: all var(--transition-slow);
            overflow: hidden;
        }
        .service-card::before {
            content: ''; position: absolute; top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(135deg, rgba(143,185,150,0.05), transparent);
            opacity: 0; transition: opacity var(--transition);
        }
        .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
        .service-card:hover::before { opacity: 1; }
        .service-icon {
            width: 64px; height: 64px; border-radius: 16px;
            background: linear-gradient(135deg, var(--sage-pale), rgba(143,185,150,0.3));
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 24px; color: var(--forest);
            transition: all var(--transition);
        }
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--forest), var(--forest-light));
            color: var(--white); transform: scale(1.1);
        }
        .service-card h3 { margin-bottom: 12px; }
        .service-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.75; }
        .service-tag {
            display: inline-block; margin-top: 16px; padding: 5px 14px;
            background: var(--sage-pale); border-radius: 50px;
            font-size: 0.72rem; font-weight: 600; color: var(--forest);
            text-transform: uppercase; letter-spacing: 1px;
        }

        /* ---- ABOUT ---- */
        .about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
        .about-image-group { position: relative; }
        .about-image-main {
            border-radius: var(--radius-xl); overflow: hidden;
            box-shadow: var(--shadow-lg); position: relative;
        }
        .about-image-main img, .about-image-main .img-placeholder { width: 100%; height: 420px; object-fit: cover; }
        .about-image-accent {
            position: absolute; bottom: -30px; right: -30px;
            width: 200px; height: 200px;
            border-radius: var(--radius-lg); overflow: hidden;
            border: 6px solid var(--cream); box-shadow: var(--shadow-md);
        }
        .about-image-accent img, .about-image-accent .img-placeholder { width: 100%; height: 100%; object-fit: cover; }
        .about-float-badge {
            position: absolute; top: 20px; left: -20px;
            background: var(--white); border-radius: var(--radius);
            padding: 14px 22px; box-shadow: var(--shadow-md);
            display: flex; align-items: center; gap: 12px;
            animation: float 4s ease-in-out infinite;
            z-index: 5;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        .about-float-badge .badge-icon {
            width: 40px; height: 40px; border-radius: 10px;
            background: linear-gradient(135deg, var(--sage-pale), var(--sage));
            display: flex; align-items: center; justify-content: center;
        }
        .about-float-badge strong { font-family: var(--font-heading); font-size: 1.5rem; color: var(--forest); }
        .about-float-badge span { font-size: 0.72rem; color: var(--text-light); }
        .about-text p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; line-height: 1.85; }
        .about-features {
            display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
            margin-top: 28px;
        }
        .about-feature {
            display: flex; align-items: center; gap: 10px;
            font-size: 0.88rem; font-weight: 500; color: var(--forest);
        }
        .about-feature-icon {
            width: 28px; height: 28px; border-radius: 50%;
            background: var(--sage-pale);
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }

        /* ---- PROCESS ---- */
        .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
        .process-card {
            background: var(--white); border-radius: var(--radius-lg);
            padding: 36px 26px; position: relative;
            box-shadow: var(--shadow-sm); transition: all var(--transition-slow);
            border: 1px solid rgba(143,185,150,0.1); overflow: hidden;
        }
        .process-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 4px; background: linear-gradient(90deg, var(--sage), var(--forest-light));
            transform: scaleX(0); transition: transform var(--transition); transform-origin: left;
        }
        .process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
        .process-card:hover::before { transform: scaleX(1); }
        .process-number {
            width: 52px; height: 52px; border-radius: 14px;
            background: linear-gradient(135deg, var(--sage-pale), rgba(143,185,150,0.3));
            color: var(--forest);
            font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 22px; transition: all var(--transition);
        }
        .process-card:hover .process-number {
            background: linear-gradient(135deg, var(--forest), var(--forest-light));
            color: var(--white);
        }
        .process-card h3 { margin-bottom: 12px; }
        .process-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.75; }
        .process-connector {
            display: none; /* shown with CSS on large screens */
        }

        /* ---- STATS ---- */
        .stats-banner {
            background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-light) 100%);
            padding: 70px 0; position: relative; overflow: hidden;
        }
        .stats-banner::before {
            content: ''; position: absolute; inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="rgba(143,185,150,0.07)"/></svg>');
            background-size: 30px;
        }
        .stats-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
            position: relative; z-index: 1;
        }
        .stat-item { text-align: center; }
        .stat-number {
            font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 700; color: var(--white); line-height: 1;
            margin-bottom: 8px;
        }
        .stat-label { font-size: 0.82rem; color: var(--sage); text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }

        /* ---- GALLERY ---- */
        .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
        .gallery-card {
            background: var(--white); border-radius: var(--radius-lg);
            overflow: hidden; box-shadow: var(--shadow-sm);
            transition: all var(--transition-slow);
            border: 1px solid rgba(143,185,150,0.08);
        }
        .gallery-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
        .ba-slider {
            position: relative; overflow: hidden;
            cursor: col-resize; user-select: none;
            aspect-ratio: 4/3; background: var(--sage-pale);
        }
        .ba-slider .ba-before, .ba-slider .ba-after {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        }
        .ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
        .ba-slider .ba-handle {
            position: absolute; top: 0; bottom: 0; left: 50%;
            width: 3px; background: var(--white);
            transform: translateX(-50%); z-index: 10;
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
        }
        .ba-slider .ba-handle::before, .ba-slider .ba-handle::after {
            content: ''; position: absolute; top: 50%;
            width: 36px; height: 36px;
            border: 3px solid var(--white); border-radius: 50%;
            transform: translateY(-50%); background: var(--forest);
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .ba-slider .ba-handle::before { left: -18px; }
        .ba-slider .ba-handle::after { right: -18px; }
        .ba-label {
            position: absolute; bottom: 14px;
            padding: 6px 16px; background: rgba(27,67,50,0.9);
            color: var(--white); font-size: 0.7rem; font-weight: 600;
            text-transform: uppercase; letter-spacing: 2px;
            border-radius: 50px; z-index: 5;
            backdrop-filter: blur(10px);
        }
        .ba-label.before { left: 14px; }
        .ba-label.after { right: 14px; }
        .gallery-info { padding: 22px 24px; }
        .gallery-info h3 { font-size: 1.05rem; margin-bottom: 6px; }
        .gallery-info p { color: var(--text-light); font-size: 0.85rem; }

        /* ---- TESTIMONIALS ---- */
        .testimonials-section { background: var(--white); overflow: hidden; }
        .testimonials-track {
            display: flex; gap: 28px; margin-top: 50px;
            animation: scrollTestimonials 30s linear infinite;
        }
        .testimonials-track:hover { animation-play-state: paused; }
        @keyframes scrollTestimonials {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .testimonial-card {
            min-width: 380px; background: var(--cream);
            border-radius: var(--radius-lg); padding: 36px;
            border: 1px solid rgba(143,185,150,0.12);
            flex-shrink: 0; position: relative;
        }
        .testimonial-stars { color: var(--gold); margin-bottom: 16px; display: flex; gap: 3px; }
        .testimonial-card blockquote {
            font-size: 0.95rem; color: var(--text); line-height: 1.8;
            font-style: italic; margin-bottom: 20px;
        }
        .testimonial-author {
            display: flex; align-items: center; gap: 12px;
        }
        .testimonial-avatar {
            width: 44px; height: 44px; border-radius: 50%;
            background: linear-gradient(135deg, var(--sage-pale), var(--sage));
            display: flex; align-items: center; justify-content: center;
            font-family: var(--font-heading); font-weight: 700;
            color: var(--forest); font-size: 1rem;
        }
        .testimonial-author-info strong { display: block; font-size: 0.9rem; color: var(--forest); }
        .testimonial-author-info span { font-size: 0.78rem; color: var(--text-light); }

        /* ---- CTA ---- */
        .cta-banner {
            background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-light) 100%);
            color: var(--white); text-align: center;
            padding: 100px 24px; position: relative; overflow: hidden;
        }
        .cta-banner::before {
            content: ''; position: absolute; inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1.2" fill="rgba(143,185,150,0.08)"/></svg>');
            background-size: 30px;
        }
        .cta-banner::after {
            content: ''; position: absolute;
            width: 600px; height: 600px; border-radius: 50%;
            background: radial-gradient(circle, rgba(143,185,150,0.08), transparent 70%);
            top: 50%; left: 50%; transform: translate(-50%, -50%);
        }
        .cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
        .cta-banner p {
            color: var(--sage-light); font-size: 1.1rem;
            max-width: 600px; margin: 0 auto 36px;
            position: relative; z-index: 1;
        }
        .cta-banner .btn { position: relative; z-index: 1; }

        /* ---- CONTACT ---- */
        .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
        .form-group { margin-bottom: 22px; }
        .form-group label {
            display: block; font-weight: 500; font-size: 0.85rem;
            color: var(--forest); margin-bottom: 8px;
        }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%; padding: 14px 18px;
            border: 2px solid var(--sage-pale); border-radius: var(--radius);
            font-family: var(--font-body); font-size: 0.95rem;
            color: var(--text); background: var(--white);
            transition: all var(--transition);
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none; border-color: var(--sage);
            box-shadow: 0 0 0 4px rgba(143,185,150,0.12);
        }
        .form-group textarea { resize: vertical; min-height: 130px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

        .contact-info-card {
            background: linear-gradient(160deg, var(--forest-dark), var(--forest));
            color: var(--white); border-radius: var(--radius-xl);
            padding: 44px; position: relative; overflow: hidden;
        }
        .contact-info-card::before {
            content: ''; position: absolute; top: -50px; right: -50px;
            width: 200px; height: 200px; border-radius: 50%;
            background: rgba(143,185,150,0.08);
        }
        .contact-info-card h3 { color: var(--white); margin-bottom: 28px; font-size: 1.4rem; }
        .contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
        .contact-item-icon {
            width: 48px; height: 48px;
            background: rgba(143,185,150,0.15); border-radius: 12px;
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
            transition: all var(--transition);
        }
        .contact-item:hover .contact-item-icon { background: rgba(143,185,150,0.3); transform: scale(1.05); }
        .contact-item-icon svg { color: var(--sage); }
        .contact-item h4 {
            color: var(--sage); font-family: var(--font-body);
            font-size: 0.75rem; text-transform: uppercase;
            letter-spacing: 1.5px; margin-bottom: 4px;
        }
        .contact-item p, .contact-item a { color: var(--white); font-size: 1rem; }
        .contact-item a:hover { color: var(--sage-light); }
        .cash-for-grass {
            margin-top: 30px; padding: 22px;
            background: rgba(143,185,150,0.12); border-radius: var(--radius);
            border-left: 4px solid var(--sage);
        }
        .cash-for-grass h4 { color: var(--sage); font-size: 0.95rem; margin-bottom: 6px; }
        .cash-for-grass p { font-size: 0.88rem; color: var(--sage-light); }

        /* ---- FOOTER ---- */
        .site-footer { background: var(--forest-dark); color: var(--sage-light); padding: 70px 0 0; }
        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 40px; padding-bottom: 50px;
            border-bottom: 1px solid rgba(143,185,150,0.1);
        }
        .footer-logo {
            display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
            font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--white);
        }
        .footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 320px; }
        .footer-links h4, .footer-contact h4, .footer-newsletter h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 20px; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
        .footer-links a {
            display: flex; align-items: center; gap: 8px;
            color: var(--sage-light); padding: 6px 0; font-size: 0.88rem;
            transition: all var(--transition);
        }
        .footer-links a::before {
            content: ''; width: 0; height: 1px; background: var(--sage);
            transition: width var(--transition);
        }
        .footer-links a:hover { color: var(--white); padding-left: 6px; }
        .footer-links a:hover::before { width: 12px; }
        .footer-contact p { font-size: 0.88rem; margin-bottom: 10px; }
        .footer-contact a { color: var(--sage-light); }
        .footer-contact a:hover { color: var(--white); }
        .footer-newsletter-input {
            display: flex; gap: 0; margin-top: 10px;
        }
        .footer-newsletter-input input {
            flex: 1; padding: 12px 16px;
            background: rgba(143,185,150,0.1);
            border: 1px solid rgba(143,185,150,0.2);
            border-radius: 8px 0 0 8px; color: var(--white);
            font-family: var(--font-body); font-size: 0.85rem;
        }
        .footer-newsletter-input input::placeholder { color: rgba(143,185,150,0.5); }
        .footer-newsletter-input input:focus { outline: none; border-color: var(--sage); }
        .footer-newsletter-input button {
            padding: 12px 20px; background: var(--sage);
            color: var(--forest-dark); border: none;
            border-radius: 0 8px 8px 0; font-weight: 600;
            cursor: pointer; font-size: 0.85rem;
            transition: all var(--transition);
        }
        .footer-newsletter-input button:hover { background: var(--sage-light); }
        .footer-bottom {
            display: flex; justify-content: space-between; align-items: center;
            padding: 22px 0; font-size: 0.78rem; color: rgba(143,185,150,0.4);
        }
        .footer-bottom-links { display: flex; gap: 20px; }
        .footer-bottom-links a { color: rgba(143,185,150,0.4); font-size: 0.78rem; }
        .footer-bottom-links a:hover { color: var(--sage-light); }

        /* ---- BACK TO TOP ---- */
        .back-to-top {
            position: fixed; bottom: 30px; right: 30px;
            width: 48px; height: 48px; border-radius: 50%;
            background: var(--forest); color: var(--white);
            border: none; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            box-shadow: var(--shadow-md); z-index: 900;
            opacity: 0; transform: translateY(20px);
            transition: all var(--transition);
        }
        .back-to-top.visible { opacity: 1; transform: translateY(0); }
        .back-to-top:hover { background: var(--forest-light); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

        /* ---- PLACEHOLDERS ---- */
        .img-placeholder {
            display: flex; align-items: center; justify-content: center;
            font-size: 0.78rem; color: rgba(255,255,255,0.5);
            font-family: var(--font-body); letter-spacing: 1.5px; text-transform: uppercase;
        }
        .img-ph-garden { background: linear-gradient(135deg, #2D6A4F 0%, #40916C 50%, #1B4332 100%); }
        .img-ph-portrait { background: linear-gradient(135deg, #8FB996, #52796F); }
        .img-ph-before { background: linear-gradient(135deg, #95A88D, #B7C4A0); }
        .img-ph-after { background: linear-gradient(135deg, #2D6A4F, #52B788); }

        /* ---- ANIMATIONS ---- */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(28px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .reveal {
            opacity: 0; transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ---- RESPONSIVE ---- */
        @media (max-width: 1024px) {
            .about-layout { grid-template-columns: 1fr; gap: 50px; }
            .contact-layout { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .process-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
            .hero-decor { display: none; }
        }
        @media (max-width: 768px) {
            .top-bar-text { display: none; }
            .top-bar-social { display: none; }
            .header-inner { height: 68px; }
            .main-nav { display: none; }
            .mobile-toggle { display: flex; }
            .hero { min-height: 80vh; }
            .hero-trust { flex-wrap: wrap; gap: 16px; }
            .hero-trust-divider { display: none; }
            .process-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .about-image-accent { display: none; }
            .about-float-badge { display: none; }
            .about-features { grid-template-columns: 1fr; }
            .section { padding: 70px 0; }
            .form-row { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .testimonial-card { min-width: 300px; }
        }