        /* ═══════════════════════════════════════════════════════════════════
           DESIGN SYSTEM — Larry Contractors
           Aesthetic: Industrial Precision meets Warm Craft
           ═══════════════════════════════════════════════════════════════════ */
        :root {
            --gold: #F5C22A;
            --gold-dark: #D4A520;
            --gold-light: #FFF8E1;
            --black: #111111;
            --charcoal: #1a1a1a;
            --dark: #222222;
            --gray-900: #333333;
            --gray-700: #555555;
            --gray-500: #888888;
            --gray-300: #cccccc;
            --gray-100: #f4f4f2;
            --white: #ffffff;
            --green: #25D366;
            --red-light: #ffebee;
            --green-light: #e8f5e9;
            --max-w: 1140px;
            --section-pad: clamp(60px, 8vw, 100px);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'DM Sans', -apple-system, sans-serif;
            color: var(--dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; }
        a { text-decoration: none; color: inherit; }

        /* ═══ UTILITY ═══ */
        .container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
        .section-eyebrow {
            font-size: 11px; font-weight: 700;
            letter-spacing: 3px; text-transform: uppercase;
            color: var(--gold); margin-bottom: 10px;
            display: inline-block;
        }
        .section-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 700; line-height: 1.15;
            margin-bottom: 14px; color: var(--black);
        }
        .section-subtitle {
            font-size: 16px; color: var(--gray-700);
            max-width: 560px; line-height: 1.7;
        }
        .text-center { text-align: center; }
        .mx-auto { margin-left: auto; margin-right: auto; }
        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 15px 32px; border: none; border-radius: 4px;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px; font-weight: 600;
            cursor: pointer; transition: all 0.25s ease;
            text-decoration: none; line-height: 1;
        }
        .btn-primary {
            background: var(--gold); color: var(--black);
        }
        .btn-primary:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245,194,42,0.35);
        }
        .btn-whatsapp {
            background: var(--green); color: var(--white);
        }
        .btn-whatsapp:hover {
            background: #1da851;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37,211,102,0.35);
        }
        .btn-outline {
            background: transparent; color: var(--white);
            border: 2px solid rgba(255,255,255,0.4);
        }
        .btn-outline:hover {
            border-color: var(--gold); color: var(--gold);
        }

        /* ═══ SCROLL REVEAL ANIMATION ═══ */
        .reveal {
            opacity: 0; transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.visible {
            opacity: 1; transform: translateY(0);
        }

        /* ═══ HEADER ═══ */
        .site-header {
            position: sticky; top: 0; z-index: 100;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 3px solid var(--gold);
            padding: 0 clamp(20px, 4vw, 40px);
        }
        .header-inner {
            max-width: var(--max-w); margin: 0 auto;
            display: flex; align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .header-logo { height: 52px; width: auto; }
        .nav-links { display: flex; align-items: center; gap: 6px; }
        .nav-links a {
            font-size: 14px; font-weight: 600; color: var(--gray-900);
            padding: 8px 14px; border-radius: 4px;
            transition: color 0.2s, background 0.2s;
        }
        .nav-links a:hover { color: var(--gold-dark); background: var(--gold-light); }
        .nav-cta {
            background: var(--gold) !important; color: var(--black) !important;
            font-weight: 700 !important;
        }
        .nav-cta:hover { background: var(--gold-dark) !important; }
        .mobile-toggle {
            display: none; background: none; border: none;
            font-size: 28px; cursor: pointer; color: var(--black); padding: 4px;
        }

        /* ═══ HERO ═══ */
        .hero {
            position: relative;
            min-height: clamp(500px, 75vh, 700px);
            display: flex; align-items: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('hero.jpg');
            background-size: cover; background-position: center;
            filter: brightness(0.35);
        }
        .hero-content {
            position: relative; z-index: 2;
            max-width: var(--max-w); margin: 0 auto;
            padding: 80px clamp(20px, 4vw, 40px);
            color: var(--white);
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(245,194,42,0.15);
            border: 1px solid rgba(245,194,42,0.4);
            color: var(--gold); font-size: 12px; font-weight: 700;
            letter-spacing: 2px; text-transform: uppercase;
            padding: 8px 18px; border-radius: 30px;
            margin-bottom: 24px;
            backdrop-filter: blur(4px);
        }
        .hero h1 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(36px, 5.5vw, 62px);
            font-weight: 700; line-height: 1.08;
            margin-bottom: 20px; max-width: 700px;
        }
        .hero h1 em {
            font-style: normal; color: var(--gold);
            text-decoration: underline;
            text-decoration-color: rgba(245,194,42,0.3);
            text-underline-offset: 6px;
        }
        .hero-sub {
            font-size: clamp(16px, 2vw, 20px);
            color: rgba(255,255,255,0.8);
            margin-bottom: 36px; max-width: 520px; line-height: 1.7;
        }
        .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

        /* ═══ TRUST BAR ═══ */
        .trust-bar {
            background: var(--gold);
            padding: 18px 0;
        }
        .trust-bar .container {
            display: flex; justify-content: center;
            gap: clamp(24px, 5vw, 60px); flex-wrap: wrap;
        }
        .trust-item {
            text-align: center; color: var(--black);
        }
        .trust-item strong {
            display: block; font-size: 24px; font-weight: 800; line-height: 1;
        }
        .trust-item span { font-size: 13px; font-weight: 600; }

        /* ═══ SERVICES ═══ */
        .services { padding: var(--section-pad) 0; background: var(--white); }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px; margin-top: 40px;
        }
        .service-card {
            padding: 32px 24px;
            border: 1.5px solid var(--gray-100);
            border-radius: 8px;
            transition: all 0.3s ease;
            background: var(--white);
        }
        .service-card:hover {
            border-color: var(--gold);
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.08);
        }
        .service-icon {
            width: 48px; height: 48px; border-radius: 10px;
            background: var(--gold-light);
            display: flex; align-items: center; justify-content: center;
            font-size: 24px; margin-bottom: 16px;
        }
        .service-card h3 {
            font-size: 17px; font-weight: 700;
            margin-bottom: 8px; color: var(--black);
        }
        .service-card p {
            font-size: 14px; color: var(--gray-700); line-height: 1.6;
        }

        /* ═══ PORTFOLIO ═══ */
        .portfolio { padding: var(--section-pad) 0; background: var(--gray-100); }
        .portfolio-filters {
            display: flex; justify-content: center;
            gap: 8px; margin: 32px 0; flex-wrap: wrap;
        }
        .filter-btn {
            padding: 8px 20px; border: 2px solid var(--gray-300);
            border-radius: 30px; background: var(--white);
            font-family: 'DM Sans', sans-serif;
            font-size: 13px; font-weight: 700;
            cursor: pointer; color: var(--gray-700);
            transition: all 0.2s;
        }
        .filter-btn:hover, .filter-btn.active {
            border-color: var(--gold); background: var(--gold); color: var(--black);
        }
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .portfolio-card {
            cursor: pointer; border-radius: 10px; overflow: hidden;
            background: var(--white);
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }
        .portfolio-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.12);
        }
        .portfolio-thumb { position: relative; height: 240px; overflow: hidden; }
        .portfolio-thumb img {
            width: 100%; height: 100%;
            object-fit: cover; transition: transform 0.4s ease;
        }
        .portfolio-card:hover .portfolio-thumb img { transform: scale(1.06); }
        .portfolio-overlay {
            position: absolute; bottom: 0; left: 0; right: 0;
            background: linear-gradient(transparent 0%, rgba(0,0,0,0.8) 100%);
            padding: 40px 18px 16px;
        }
        .portfolio-badge {
            position: absolute; top: 12px; right: 12px;
            background: var(--gold); color: var(--black);
            font-size: 10px; font-weight: 800;
            padding: 5px 12px; border-radius: 20px;
            letter-spacing: 0.5px;
        }
        .portfolio-type {
            color: var(--gold); font-size: 11px;
            font-weight: 700; letter-spacing: 1.5px;
            text-transform: uppercase; margin-bottom: 4px;
        }
        .portfolio-name { color: var(--white); font-size: 18px; font-weight: 700; }
        .portfolio-stats-text {
            color: rgba(255,255,255,0.55); font-size: 12px; margin-top: 4px;
        }
        .portfolio-loading {
            text-align: center; color: var(--gray-500); padding: 60px;
            grid-column: 1/-1; font-size: 15px;
        }

        /* ═══ LIGHTBOX ═══ */
        .lightbox {
            display: none; position: fixed; top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.96);
            z-index: 9999; overflow-y: auto;
        }
        .lb-close {
            position: fixed; top: 16px; right: 24px;
            background: none; border: none; color: rgba(255,255,255,0.6);
            font-size: 36px; cursor: pointer; z-index: 10001;
            transition: color 0.2s;
        }
        .lb-close:hover { color: var(--white); }
        .lb-nav {
            position: fixed; top: 16px; left: 24px;
            display: flex; gap: 6px; z-index: 10001;
        }
        .lb-nav button {
            background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.7); padding: 8px 16px; border-radius: 4px;
            cursor: pointer; font-family: 'DM Sans', sans-serif;
            font-size: 13px; font-weight: 600; transition: all 0.2s;
        }
        .lb-nav button:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
        .lb-nav button:disabled { opacity: 0.2; cursor: not-allowed; }
        .lb-nav button:disabled:hover { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }
        .lb-inner { max-width: 1000px; margin: 64px auto 40px; padding: 0 20px; }
        .lb-title {
            font-family: 'Playfair Display', Georgia, serif;
            color: var(--gold); font-size: 28px; margin-bottom: 4px;
        }
        .lb-subtitle { color: var(--gray-500); font-size: 14px; margin-bottom: 4px; }
        .lb-desc { color: var(--gray-500); font-size: 13px; margin-bottom: 32px; }
        .ba-label {
            color: var(--white); font-size: 14px; font-weight: 700;
            margin: 28px 0 12px;
            padding-left: 12px; border-left: 3px solid var(--gold);
        }
        .ba-pair {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 6px; margin-bottom: 6px;
        }
        .ba-img {
            position: relative; overflow: hidden;
            border-radius: 4px; height: 260px; cursor: pointer;
        }
        .ba-img img {
            width: 100%; height: 100%;
            object-fit: cover; display: block;
            transition: transform 0.3s;
        }
        .ba-img:hover img { transform: scale(1.03); }
        .ba-tag {
            position: absolute; top: 8px; left: 8px;
            font-size: 10px; font-weight: 800;
            padding: 4px 12px; border-radius: 20px;
            letter-spacing: 0.5px;
        }
        .tag-before { background: rgba(50,50,50,0.85); color: var(--white); }
        .tag-after { background: var(--gold); color: var(--black); }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 6px; margin-top: 8px;
        }
        .gallery-item {
            position: relative; border-radius: 4px;
            overflow: hidden; height: 180px; cursor: pointer;
            transition: transform 0.2s;
        }
        .gallery-item:hover { transform: scale(1.03); }
        .gallery-item img {
            width: 100%; height: 100%;
            object-fit: cover; display: block;
        }
        .gallery-tag {
            position: absolute; bottom: 6px; left: 6px;
            background: rgba(0,0,0,0.6); color: var(--white);
            font-size: 10px; padding: 3px 8px; border-radius: 12px;
        }
        .lb-cta {
            text-align: center; margin-top: 40px;
            padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
        }
        .lb-cta p { color: var(--gray-500); font-size: 14px; margin-bottom: 12px; }

        /* ═══ FULLSCREEN VIEWER ═══ */
        .fs-viewer {
            display: none; position: fixed; top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.98);
            z-index: 10002;
            align-items: center; justify-content: center;
        }
        .fs-viewer.active { display: flex; }
        .fs-viewer img {
            max-width: 94%; max-height: 90vh;
            object-fit: contain; border-radius: 4px;
        }
        .fs-close {
            position: absolute; top: 16px; right: 24px;
            background: none; border: none; color: rgba(255,255,255,0.6);
            font-size: 36px; cursor: pointer;
        }
        .fs-caption {
            position: absolute; bottom: 24px;
            color: var(--gray-500); font-size: 13px;
        }

        /* ═══ WHY US / DIFFERENTIATOR ═══ */
        .why-us { padding: var(--section-pad) 0; background: var(--white); }
        .why-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 48px; align-items: center; margin-top: 40px;
        }
        .why-points { display: flex; flex-direction: column; gap: 20px; }
        .why-point {
            display: flex; gap: 16px; align-items: flex-start;
        }
        .why-icon {
            width: 44px; height: 44px; border-radius: 10px;
            background: var(--gold-light); display: flex;
            align-items: center; justify-content: center;
            font-size: 20px; flex-shrink: 0;
        }
        .why-point h4 {
            font-size: 15px; font-weight: 700;
            color: var(--black); margin-bottom: 4px;
        }
        .why-point p {
            font-size: 14px; color: var(--gray-700); line-height: 1.6;
        }
        .why-image {
            position: relative; border-radius: 12px; overflow: hidden;
            aspect-ratio: 4/3;
        }
        .why-image img {
            width: 100%; height: 100%; object-fit: cover;
        }
        .why-image-badge {
            position: absolute; bottom: 16px; left: 16px;
            background: var(--gold); color: var(--black);
            padding: 10px 20px; border-radius: 6px;
            font-weight: 700; font-size: 14px;
        }

        /* ═══ PROCESS ═══ */
        .process { padding: var(--section-pad) 0; background: var(--charcoal); color: var(--white); }
        .process .section-title { color: var(--white); }
        .process .section-subtitle { color: rgba(255,255,255,0.5); }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px; margin-top: 40px;
        }
        .process-step {
            position: relative; padding: 28px 20px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            transition: all 0.3s;
        }
        .process-step:hover {
            background: rgba(255,255,255,0.07);
            border-color: var(--gold);
        }
        .step-num {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 36px; font-weight: 700;
            color: var(--gold); opacity: 0.3;
            position: absolute; top: 12px; right: 16px;
        }
        .process-step h4 {
            font-size: 16px; font-weight: 700;
            margin-bottom: 8px; color: var(--white);
        }
        .process-step p {
            font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6;
        }

        /* ═══ TESTIMONIALS ═══ */
        .testimonials { padding: var(--section-pad) 0; background: var(--gray-100); }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px; margin-top: 40px;
        }
        .testimonial-card {
            background: var(--white);
            border-radius: 8px; padding: 28px 24px;
            border: 1.5px solid transparent;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .testimonial-card:hover {
            border-color: var(--gold);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }
        .stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
        .testimonial-text {
            font-size: 14px; color: var(--gray-700); line-height: 1.75;
            margin-bottom: 20px; font-style: italic;
        }
        .testimonial-author { display: flex; align-items: center; gap: 12px; }
        .author-avatar {
            width: 42px; height: 42px; border-radius: 50%;
            background: var(--gold); display: flex;
            align-items: center; justify-content: center;
            font-weight: 700; font-size: 15px; color: var(--black);
            flex-shrink: 0;
        }
        .author-name { font-size: 14px; font-weight: 700; color: var(--black); }
        .author-project { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

        /* ═══ FAQ ═══ */
        .faq { padding: var(--section-pad) 0; background: var(--white); }
        .faq-list { max-width: 720px; margin: 40px auto 0; }
        .faq-item {
            border-bottom: 1px solid var(--gray-100);
        }
        .faq-question {
            width: 100%; text-align: left; background: none; border: none;
            padding: 20px 0; font-family: 'DM Sans', sans-serif;
            font-size: 16px; font-weight: 600; color: var(--black);
            cursor: pointer; display: flex; justify-content: space-between;
            align-items: center; gap: 16px; line-height: 1.4;
        }
        .faq-question::after {
            content: '+'; font-size: 22px; font-weight: 300;
            color: var(--gold); flex-shrink: 0;
            transition: transform 0.3s;
        }
        .faq-item.open .faq-question::after {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0; overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }
        .faq-item.open .faq-answer { max-height: 300px; }
        .faq-answer p {
            font-size: 14px; color: var(--gray-700);
            line-height: 1.7; padding-bottom: 20px;
        }

        /* ═══ ABOUT ═══ */
        .about { padding: var(--section-pad) 0; background: var(--black); color: var(--white); }
        .about .section-title { color: var(--white); }
        .about-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 48px; align-items: center; margin-top: 40px;
        }
        .about-text p {
            font-size: 15px; color: rgba(255,255,255,0.65);
            line-height: 1.8; margin-bottom: 16px;
        }
        .about-text strong { color: var(--gold); }
        .about-stats {
            display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
        }
        .stat-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px; padding: 24px; text-align: center;
        }
        .stat-num {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 36px; font-weight: 700; color: var(--gold);
        }
        .stat-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; }

        /* ═══ BLOG PREVIEW ═══ */
        .blog-preview { padding: var(--section-pad) 0; background: var(--gray-100); }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px; margin-top: 40px;
        }
        .blog-card {
            background: var(--white); border-radius: 8px; overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: all 0.3s;
        }
        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.1);
        }
        .blog-card-img { height: 180px; overflow: hidden; background: var(--gray-100); }
        .blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
        .blog-card-body { padding: 20px; }
        .blog-card-date { font-size: 12px; color: var(--gray-500); margin-bottom: 8px; }
        .blog-card-title {
            font-size: 17px; font-weight: 700;
            color: var(--black); margin-bottom: 8px; line-height: 1.4;
        }
        .blog-card-excerpt {
            font-size: 14px; color: var(--gray-700); line-height: 1.6;
        }
        .blog-card-link {
            display: inline-flex; align-items: center; gap: 6px;
            margin-top: 12px; font-size: 13px; font-weight: 700;
            color: var(--gold-dark);
        }

        /* ═══ CONTACT ═══ */
        .contact { padding: var(--section-pad) 0; background: var(--white); }
        .contact-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 48px; margin-top: 40px;
        }
        .contact-info h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 22px; margin-bottom: 24px;
        }
        .info-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
        .info-icon-box {
            width: 40px; height: 40px; border-radius: 8px;
            background: var(--gold-light);
            display: flex; align-items: center; justify-content: center;
            font-size: 18px; flex-shrink: 0;
        }
        .info-row strong { display: block; font-size: 14px; color: var(--black); margin-bottom: 2px; }
        .info-row span { font-size: 14px; color: var(--gray-700); }
        .contact-form h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 22px; margin-bottom: 24px;
        }
        .form-row { margin-bottom: 14px; }
        .form-row label {
            display: block; font-size: 13px; font-weight: 600;
            color: var(--gray-700); margin-bottom: 5px;
        }
        .form-row input, .form-row select, .form-row textarea {
            width: 100%; padding: 12px 14px;
            border: 1.5px solid #e0e0e0;
            border-radius: 6px; font-size: 14px;
            font-family: 'DM Sans', sans-serif;
            color: var(--dark); transition: border-color 0.2s;
            background: var(--white);
        }
        .form-row input:focus, .form-row select:focus, .form-row textarea:focus {
            outline: none; border-color: var(--gold);
        }
        .form-row textarea { height: 100px; resize: vertical; }
        .submit-btn {
            width: 100%; padding: 14px;
            background: var(--gold); color: var(--black);
            border: none; border-radius: 6px;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px; font-weight: 700;
            cursor: pointer; margin-top: 8px;
            transition: background 0.2s;
        }
        .submit-btn:hover { background: var(--gold-dark); }
        .submit-btn:disabled { background: var(--gray-300); cursor: not-allowed; }
        .form-msg {
            display: none; border-radius: 6px;
            padding: 14px; text-align: center;
            font-weight: 600; margin-top: 12px; font-size: 14px;
        }
        .form-msg.success { background: var(--green-light); color: #2e7d32; border: 1px solid #4caf50; }
        .form-msg.error { background: var(--red-light); color: #c62828; border: 1px solid #f44336; }

        /* ═══ FOOTER ═══ */
        .site-footer {
            background: var(--black); color: rgba(255,255,255,0.4);
            padding: 48px 0 32px; font-size: 13px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px; margin-bottom: 40px;
        }
        .footer-brand img { height: 40px; margin-bottom: 12px; filter: brightness(0) invert(1); }
        .footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.35); }
        .footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 14px; }
        .footer-col a {
            display: block; color: rgba(255,255,255,0.4);
            font-size: 13px; margin-bottom: 8px; transition: color 0.2s;
        }
        .footer-col a:hover { color: var(--gold); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 24px; text-align: center;
        }
        .footer-bottom span { color: var(--gold); }

        /* ═══ WHATSAPP FLOAT ═══ */
        .wa-float {
            position: fixed; bottom: 24px; right: 24px;
            background: var(--green); color: var(--white);
            padding: 14px 22px; border-radius: 50px;
            font-weight: 700; font-size: 14px;
            box-shadow: 0 4px 16px rgba(37,211,102,0.4);
            z-index: 998; transition: transform 0.2s, box-shadow 0.2s;
            display: flex; align-items: center; gap: 8px;
        }
        .wa-float:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(37,211,102,0.5);
        }
        .wa-float svg { width: 20px; height: 20px; fill: currentColor; }

        /* ═══ RESPONSIVE ═══ */
        @media (max-width: 900px) {
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-links.open {
                display: flex; flex-direction: column;
                position: absolute; top: 72px; left: 0; right: 0;
                background: var(--white); padding: 20px;
                border-bottom: 3px solid var(--gold);
                box-shadow: 0 12px 32px rgba(0,0,0,0.1);
            }
            .mobile-toggle { display: block; }
            .why-grid { grid-template-columns: 1fr; }
            .about-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .ba-pair { grid-template-columns: 1fr; }
            .portfolio-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
            .hero h1 { font-size: clamp(30px, 7vw, 42px); }
        }

/* ═══ SERVICE PAGE STYLES ═══ */
.service-hero {
    position: relative;
    padding: clamp(80px, 12vw, 120px) 0 clamp(60px, 8vw, 80px);
    background: var(--charcoal);
    color: var(--white);
    overflow: hidden;
}
.service-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(17,17,17,0.92) 0%, rgba(26,26,26,0.85) 100%);
    z-index: 1;
}
.service-hero .container { position: relative; z-index: 2; }
.service-hero .section-eyebrow { margin-bottom: 12px; }
.service-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 700px;
}
.service-hero h1 em {
    font-style: normal;
    color: var(--gold);
}
.service-hero p {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.service-hero .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.service-content { padding: var(--section-pad) 0; background: var(--white); }
.service-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    margin-top: 48px;
}
.service-content h2:first-child { margin-top: 0; }
.service-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    margin-top: 32px;
}
.service-content p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 780px;
}
.service-content strong { color: var(--black); }
.service-content .content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}
.service-sidebar {
    position: sticky;
    top: 90px;
    background: var(--gray-100);
    border-radius: 12px;
    padding: 28px 24px;
}
.service-sidebar h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 0;
    color: var(--black);
}
.sidebar-item {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 14px;
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item span:first-child { color: var(--gray-700); }
.sidebar-item span:last-child { font-weight: 700; color: var(--black); }
.sidebar-cta {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--black);
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 20px;
    transition: background 0.2s;
}
.sidebar-cta:hover { background: var(--gold-dark); }
.service-portfolio {
    padding: var(--section-pad) 0;
    background: var(--gray-100);
}
.breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
@media (max-width: 768px) {
    .service-content .content-grid {
        grid-template-columns: 1fr;
    }
    .service-sidebar { position: static; }
}
