        :root {
            --navy: #1B3A5C;
            --navy-dark: #0F2337;
            --navy-light: #234B73;
            --gold: #2ECC71;
            --gold-light: #58D68D;
            --white: #FFFFFF;
            --off-white: #F7F9FC;
            --text-dark: #111827;
            --text-medium: #374151;
            --text-light: #6B7280;
            --border: #E5E7EB;
            --energy-a: #00A651;
            --energy-b: #2D9A41;
            --energy-c: #69B233;
            --energy-d: #F7BB00;
            --energy-e: #F08000;
            --energy-f: #E84C20;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
            --radius: 12px;
            --transition: all 0.3s 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: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }

        /* ── NAV ── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 0 5%; display: flex; align-items: center; justify-content: space-between;
            height: 80px;
            background: rgba(15,35,55,0.96);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255,255,255,0.07);
            transition: var(--transition);
        }
        nav.scrolled { height: 68px; box-shadow: 0 2px 24px rgba(0,0,0,0.35); }
        .nav-logo { display: flex; align-items: center; gap: 0; }
        .nav-logo img { height: 52px; width: auto; }
        .nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
        .nav-links a { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 0.03em; transition: color 0.2s; position: relative; }
        .nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:2px; background:var(--gold); transform:scaleX(0); transition:transform 0.3s; }
        .nav-links a:hover { color: var(--white); }
        .nav-links a:hover::after { transform: scaleX(1); }
        .nav-cta { background: var(--gold) !important; color: var(--navy-dark) !important; padding: 9px 20px; border-radius: 6px; font-weight: 800 !important; font-size: 0.8rem !important; text-transform: uppercase; letter-spacing: 0.06em; transition: var(--transition) !important; }
        .nav-cta::after { display:none !important; }
        .nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
        .hamburger span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition: var(--transition); }
        .mobile-menu { display:none; position:fixed; top:80px; left:0; right:0; background:var(--navy-dark); padding:1.5rem 5%; z-index:999; flex-direction:column; gap:0; border-bottom:2px solid var(--gold); }
        .mobile-menu.open { display:flex; }
        .mobile-menu a { color:rgba(255,255,255,0.85); font-size:0.95rem; font-weight:600; padding:0.85rem 0; border-bottom:1px solid rgba(255,255,255,0.07); }

        /* ── HERO ── */
        #home {
            min-height: 100vh;
            background: #0a1426;
            display: flex; flex-direction: column; justify-content: center;
            position: relative; overflow: hidden;
            padding: 120px 5% 90px;
        }
        #home::before { display:none; }

        /* Slideshow */
        .hero-slides { position:absolute; inset:0; z-index:0; }
        .hero-slide {
            position:absolute; inset:0;
            background-size:cover; background-position:center right;
            opacity:0;
            transition: opacity 1.8s ease-in-out;
        }
        .hero-slide.active { opacity:1; }

        /* Gradient overlay sits above slides, below content */
        .hero-overlay {
            position:absolute; inset:0; z-index:1;
            background: linear-gradient(to right,
                rgba(8,18,32,0.97) 0%,
                rgba(10,22,38,0.92) 38%,
                rgba(10,22,38,0.62) 62%,
                rgba(6,14,26,0.28) 100%
            );
        }

        /* ── INTERACTIVE HERO BARS ── */
        .hero-deco {
            position:absolute; right:7%; top:50%; transform:translateY(-50%);
            display:flex; flex-direction:column; gap:9px; pointer-events:none;
        }
        .hero-deco .bar {
            height:38px; border-radius:4px;
            opacity:0.12;
            cursor:pointer; pointer-events:all;
            position:relative;
            display:flex; align-items:center; justify-content:flex-end; padding-right:10px;
            transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
            animation: pulse-bar 3.5s ease-in-out infinite;
        }
        .hero-deco .bar:hover {
            opacity: 1 !important;
            transform: scaleX(1.03) translateX(-4px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
            animation: none;
            z-index: 2;
        }
        .hero-deco .bar .rating-label {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: rgba(255,255,255,0);
            transition: color 0.2s ease;
            user-select: none;
        }
        .hero-deco .bar:hover .rating-label {
            color: rgba(255,255,255,0.95);
        }
        .hero-deco .bar .rating-score {
            position: absolute;
            left: calc(100% + 12px);
            top: 50%; transform: translateY(-50%);
            background: rgba(255,255,255,0.95);
            color: var(--navy-dark);
            font-size: 0.7rem;
            font-weight: 800;
            padding: 4px 9px;
            border-radius: 5px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
            letter-spacing: 0.04em;
        }
        .hero-deco .bar:hover .rating-score { opacity: 1; }
        .hero-deco .bar:nth-child(1){width:230px;background:#00A651;animation-delay:0s}
        .hero-deco .bar:nth-child(2){width:200px;background:#2D9A41;animation-delay:.2s}
        .hero-deco .bar:nth-child(3){width:172px;background:#69B233;animation-delay:.4s}
        .hero-deco .bar:nth-child(4){width:144px;background:#F7BB00;animation-delay:.6s}
        .hero-deco .bar:nth-child(5){width:116px;background:#F08000;animation-delay:.8s}
        .hero-deco .bar:nth-child(6){width:88px;background:#E84C20;animation-delay:1s}
        .hero-deco .bar:nth-child(7){width:60px;background:#C81414;animation-delay:1.2s}
        @keyframes pulse-bar { 0%,100%{opacity:.12} 50%{opacity:.24} }

        .hero-content { position:relative; z-index:2; max-width:680px; }
        .scroll-hint { z-index:2; }
        .hero-title { text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
        .hero-sub { text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
        .hero-badge {
            display:inline-flex; align-items:center; gap:8px;
            background:rgba(201,168,76,0.13); border:1px solid rgba(201,168,76,0.28);
            color:var(--gold-light); padding:6px 16px; border-radius:100px;
            font-size:0.75rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
            margin-bottom:1.5rem;
            animation: fadeInUp 0.55s ease both;
        }
        .hero-badge .dot { width:6px;height:6px;border-radius:50%;background:var(--energy-a);animation:blink 2s infinite; }
        @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
        .hero-title {
            font-family:'Cormorant Garamond',serif;
            font-size: clamp(2.8rem,5.5vw,4.2rem);
            font-weight:600; color:var(--white); line-height:1.11;
            margin-bottom:1.4rem;
            animation: fadeInUp 0.55s ease 0.14s both;
        }
        .hero-title .highlight { color:var(--gold); font-style:italic; }
        .hero-sub {
            font-size:1.05rem; color:rgba(255,255,255,0.7); line-height:1.75;
            max-width:510px; margin-bottom:2.25rem;
            animation: fadeInUp 0.55s ease 0.28s both;
        }
        .hero-pills { display:flex; flex-wrap:wrap; gap:9px; margin-bottom:2.25rem; animation: fadeInUp 0.55s ease 0.42s both; }
        .pill {
            display:flex; align-items:center; gap:7px;
            background:rgba(255,255,255,0.055); border:1px solid rgba(255,255,255,0.11);
            color:rgba(255,255,255,0.85); padding:7px 15px; border-radius:100px;
            font-size:0.8rem; font-weight:600; transition:var(--transition);
        }
        .pill:hover { background:rgba(255,255,255,0.09); border-color:rgba(201,168,76,0.35); }
        .hero-cta { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:2.75rem; animation: fadeInUp 0.55s ease 0.56s both; }
        .btn-primary {
            display:inline-flex; align-items:center; gap:8px;
            background:var(--gold); color:var(--navy-dark);
            padding:14px 28px; border-radius:8px;
            font-weight:800; font-size:0.87rem; letter-spacing:0.05em; text-transform:uppercase;
            border:2px solid var(--gold); transition:var(--transition); cursor:pointer;
        }
        .btn-primary:hover { background:var(--gold-light); border-color:var(--gold-light); transform:translateY(-2px); box-shadow:0 8px 24px rgba(201,168,76,0.35); }
        .btn-secondary {
            display:inline-flex; align-items:center; gap:8px;
            background:transparent; color:var(--white);
            padding:14px 28px; border-radius:8px;
            font-weight:700; font-size:0.87rem; letter-spacing:0.05em; text-transform:uppercase;
            border:2px solid rgba(255,255,255,0.28); transition:var(--transition);
        }
        .btn-secondary:hover { border-color:rgba(255,255,255,0.65); background:rgba(255,255,255,0.05); transform:translateY(-2px); }
        .hero-contact { display:flex; align-items:center; gap:2rem; flex-wrap:wrap; animation: fadeInUp 0.55s ease 0.7s both; }
        .contact-item { display:flex; align-items:center; gap:10px; }
        .contact-item .icon { width:36px;height:36px;background:rgba(201,168,76,0.13);border:1px solid rgba(201,168,76,0.22);border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
        .contact-item .icon svg { color:var(--gold); }
        .contact-item .label { display:flex;flex-direction:column;line-height:1.3; }
        .contact-item .label .lbl { font-size:0.65rem;color:rgba(255,255,255,0.45);text-transform:uppercase;letter-spacing:0.08em;font-weight:700; }
        .contact-item .label a { font-size:0.92rem;font-weight:700;color:var(--white);transition:color 0.2s; }
        .contact-item .label a:hover { color:var(--gold); }
        .scroll-hint { position:absolute;bottom:28px;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:6px;color:rgba(255,255,255,0.3);font-size:0.68rem;letter-spacing:.12em;text-transform:uppercase;animation:fadeIn 1s ease 1.6s both; }
        .scroll-hint .mouse { width:20px;height:30px;border:2px solid rgba(255,255,255,0.22);border-radius:10px;display:flex;justify-content:center;padding-top:5px; }
        .scroll-hint .wheel { width:3px;height:6px;background:rgba(255,255,255,0.38);border-radius:2px;animation:scroll-wheel 2s ease infinite; }
        @keyframes scroll-wheel { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(8px);opacity:0} }
        @keyframes fadeInUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
        @keyframes fadeIn { from{opacity:0} to{opacity:1} }

        /* ── TRUST BAR ── */
        .trust-bar {
            background:var(--navy-dark); border-bottom:1px solid rgba(201,168,76,0.18);
            padding:13px 5%; display:flex; align-items:center; justify-content:center; gap:1.75rem; flex-wrap:wrap;
        }
        .trust-item { display:flex;align-items:center;gap:7px;color:rgba(255,255,255,0.58);font-size:0.76rem;font-weight:600;letter-spacing:0.03em; }
        .trust-item svg { color:var(--gold); flex-shrink:0; }
        .trust-divider { width:1px;height:14px;background:rgba(255,255,255,0.1); }

        /* ── SHARED SECTION ── */
        section { position:relative; }
        .section-inner { max-width:1200px; margin:0 auto; padding:0 5%; }
        .section-label { display:inline-flex;align-items:center;gap:8px;font-size:0.7rem;font-weight:800;letter-spacing:0.14em;text-transform:uppercase;color:var(--gold);margin-bottom:0.9rem; }
        .section-label::before { content:'';display:block;width:22px;height:2px;background:var(--gold); }
        .section-title { font-family:'Cormorant Garamond',serif;font-size:clamp(1.9rem,3.2vw,2.7rem);font-weight:600;color:var(--text-dark);line-height:1.2;margin-bottom:0.9rem; }
        .section-subtitle { font-size:0.97rem;color:var(--text-light);max-width:560px;line-height:1.75; }
        .section-header { margin-bottom:3.25rem; }
        .section-header.center { text-align:center; }
        .section-header.center .section-label { justify-content:center; }
        .section-header.center .section-subtitle { margin:0 auto; }

        /* ── SERVICES ── */
        #services { padding:100px 0; background:var(--off-white); }
        .services-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem; }
        .service-card { background:var(--white);border-radius:var(--radius);padding:2rem;border:1px solid var(--border);transition:var(--transition);position:relative;overflow:hidden; }
        .service-card::after { content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--navy),var(--gold));transform:scaleX(0);transform-origin:left;transition:transform 0.4s ease; }
        .service-card:hover { transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:rgba(27,58,92,0.14); }
        .service-card:hover::after { transform:scaleX(1); }
        .service-icon { width:50px;height:50px;background:linear-gradient(135deg,var(--navy),var(--navy-light));border-radius:11px;display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem;color:var(--gold); }
        .service-card h3 { font-family:'Cormorant Garamond',serif;font-size:1.25rem;font-weight:600;color:var(--text-dark);margin-bottom:0.5rem; }
        .service-card p { font-size:0.865rem;color:var(--text-light);line-height:1.72; }

        /* ── WHY US ── */
        #why-us { padding:100px 0;background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 100%);overflow:hidden; }
        .why-layout { display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center; }
        .why-pillars { display:flex;flex-direction:column;gap:1.3rem; }
        .pillar { display:flex;align-items:flex-start;gap:1.2rem;padding:1.4rem;border-radius:var(--radius);background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.07);transition:var(--transition); }
        .pillar:hover { background:rgba(255,255,255,0.07);border-color:rgba(201,168,76,0.18); }
        .pillar-icon { width:46px;height:46px;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
        .pillar-icon.gold { background:rgba(201,168,76,0.14);color:var(--gold); }
        .pillar-icon.green { background:rgba(34,197,94,0.1);color:#4ade80; }
        .pillar-icon.blue { background:rgba(99,179,237,0.1);color:#90cdf4; }
        .pillar-text h3 { font-family:'Cormorant Garamond',serif;font-size:1.2rem;font-weight:600;color:var(--white);margin-bottom:0.3rem; }
        .pillar-text p { font-size:0.86rem;color:rgba(255,255,255,0.58);line-height:1.68; }
        .stats-grid { display:grid;grid-template-columns:1fr 1fr;gap:1.2rem; }
        .stat-card { background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.09);border-radius:var(--radius);padding:2rem 1.5rem;text-align:center;transition:var(--transition); }
        .stat-card:hover { background:rgba(255,255,255,0.08);border-color:rgba(201,168,76,0.22); }
        .stat-value { font-family:'Cormorant Garamond',serif;font-size:2.6rem;font-weight:700;color:var(--gold);line-height:1;margin-bottom:0.4rem; }
        .stat-label { font-size:0.76rem;color:rgba(255,255,255,0.55);font-weight:700;text-transform:uppercase;letter-spacing:0.06em;line-height:1.4; }
        .energy-chart { display:flex;flex-direction:column;gap:5px;margin-top:1.4rem;padding:1.6rem 2.5rem 1.6rem 1.6rem;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.07);border-radius:var(--radius); }
        .energy-chart-label { font-size:0.68rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:rgba(255,255,255,0.35);margin-bottom:0.75rem; }
        .house-illustration { margin-top:1.4rem; padding:0.5rem 0; }
        .energy-row { display:flex;align-items:center;gap:9px; }
        .energy-row .letter { width:18px;font-weight:800;font-size:0.82rem;color:var(--white);text-align:right;flex-shrink:0; }
        .energy-row .bar-fill { height:26px;border-radius:3px;display:flex;align-items:center;padding:0 9px;font-size:0.72rem;font-weight:700;color:var(--white); }

        /* ── HOW IT WORKS ── */
        #how-it-works { padding:100px 0;background:var(--white); }
        .steps-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;position:relative; }
        .steps-grid::before { content:'';position:absolute;top:27px;left:calc(12.5% + 12px);right:calc(12.5% + 12px);height:2px;background:linear-gradient(90deg,var(--navy),var(--gold),var(--navy));opacity:0.12; }
        .step { display:flex;flex-direction:column;align-items:center;text-align:center;padding:1.75rem 1rem; }
        .step-number { width:54px;height:54px;background:linear-gradient(135deg,var(--navy),var(--navy-light));border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:'Cormorant Garamond',serif;font-size:1.25rem;font-weight:700;color:var(--gold);margin-bottom:1.2rem;position:relative;z-index:1;transition:var(--transition); }
        .step:hover .step-number { transform:scale(1.1);box-shadow:0 4px 18px rgba(27,58,92,0.22); }
        .step h3 { font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:600;color:var(--text-dark);margin-bottom:0.45rem; }
        .step p { font-size:0.84rem;color:var(--text-light);line-height:1.68; }

        /* ── ABOUT ── */
        #about { padding:100px 0;background:var(--off-white); }
        .about-layout { display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start; }
        .about-content p { font-size:0.93rem;color:var(--text-medium);line-height:1.82;margin-bottom:1.2rem; }
        .accred-row { display:flex;flex-wrap:wrap;gap:9px;margin-top:1.4rem; }
        .accred-badge { display:flex;align-items:center;gap:7px;padding:7px 13px;background:var(--white);border:1px solid var(--border);border-radius:7px;font-size:0.78rem;font-weight:700;color:var(--navy);transition:var(--transition); }
        .accred-badge:hover { border-color:var(--gold);box-shadow:var(--shadow-sm); }
        .accred-badge svg { color:var(--gold); }
        .team-label { font-size:0.68rem;font-weight:800;letter-spacing:0.13em;text-transform:uppercase;color:var(--text-light);margin-bottom:0.9rem; }
        .team-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:1rem; }
        .team-card { background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:1.4rem;transition:var(--transition); }
        .team-card:hover { transform:translateY(-2px);box-shadow:var(--shadow-md);border-color:rgba(201,168,76,0.28); }
        .team-avatar { width:50px;height:50px;background:linear-gradient(135deg,var(--navy),var(--navy-light));border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:600;color:var(--gold);margin-bottom:0.9rem; }
        .team-card h4 { font-family:'Cormorant Garamond',serif;font-size:1rem;font-weight:600;color:var(--text-dark);margin-bottom:0.15rem; }
        .team-card .role { font-size:0.72rem;color:var(--gold);font-weight:700;text-transform:uppercase;letter-spacing:0.06em;margin-bottom:0.55rem; }
        .team-card p { font-size:0.78rem;color:var(--text-light);line-height:1.62; }

        /* ── PORTFOLIO ── */
        #portfolio { padding:80px 0;background:var(--white); }
        .portfolio-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:1.4rem;max-width:800px;margin:0 auto; }
        .portfolio-card { border-radius:var(--radius);overflow:hidden;background:var(--off-white);border:1px solid var(--border);transition:var(--transition); }
        .portfolio-card:hover { transform:translateY(-3px);box-shadow:var(--shadow-lg); }
        .portfolio-visual { height:150px;background:linear-gradient(135deg,var(--navy-dark),var(--navy-light));display:flex;align-items:center;justify-content:center; }
        .epc-badge { width:68px;height:68px;background:rgba(255,255,255,0.07);border:2px solid;border-radius:10px;display:flex;align-items:center;justify-content:center;font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:700; }
        .epc-badge.a { border-color:var(--energy-a);color:var(--energy-a); }
        .epc-badge.b { border-color:var(--energy-b);color:var(--energy-b); }
        .epc-badge.c { border-color:var(--energy-c);color:var(--energy-c); }
        .epc-badge.d { border-color:var(--energy-d);color:var(--energy-d); }
        .portfolio-info { padding:1.2rem; }
        .portfolio-info h4 { font-family:'Cormorant Garamond',serif;font-size:1rem;font-weight:600;color:var(--text-dark);margin-bottom:0.3rem; }
        .portfolio-meta { display:flex;gap:1rem;font-size:0.76rem;color:var(--text-light);font-weight:600; }
        .portfolio-meta span { display:flex;align-items:center;gap:3px; }

        /* ── FAQ ── */
        #faq { padding:100px 0;background:var(--off-white); }
        .faq-layout { display:grid;grid-template-columns:1fr 1.6fr;gap:5rem;align-items:start; }
        .faq-list { display:flex;flex-direction:column; }
        .faq-item { border-bottom:1px solid var(--border); }
        .faq-question { display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.2rem 0;cursor:pointer;font-size:0.92rem;font-weight:700;color:var(--text-dark);transition:color 0.2s;user-select:none; }
        .faq-question:hover { color:var(--navy); }
        .faq-chevron { width:24px;height:24px;border:2px solid var(--border);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:var(--transition);color:var(--text-light); }
        .faq-item.open .faq-chevron { background:var(--navy);border-color:var(--navy);color:var(--white);transform:rotate(180deg); }
        .faq-answer { max-height:0;overflow:hidden;transition:max-height 0.4s ease; }
        .faq-answer-inner { padding-bottom:1.2rem;font-size:0.865rem;color:var(--text-light);line-height:1.78; }
        .faq-item.open .faq-answer { max-height:300px; }

        /* ── ENQUIRE ── */
        #enquire { padding:100px 0;background:linear-gradient(135deg,var(--navy-dark),var(--navy)); }
        .enquire-layout { display:grid;grid-template-columns:1fr 1.1fr;gap:5rem;align-items:start; }
        .enquire-perks { display:flex;flex-direction:column;gap:0.9rem;margin-top:0.5rem; }
        .perk { display:flex;align-items:center;gap:11px;color:rgba(255,255,255,0.78);font-size:0.875rem;font-weight:600; }
        .perk-check { width:21px;height:21px;background:rgba(34,197,94,0.14);border:1px solid rgba(34,197,94,0.28);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#4ade80; }
        .enquire-form { background:var(--white);border-radius:16px;padding:2.4rem; }
        .enquire-form h3 { font-family:'Cormorant Garamond',serif;font-size:1.45rem;font-weight:600;color:var(--text-dark);margin-bottom:1.4rem; }
        .form-row { display:grid;grid-template-columns:1fr 1fr;gap:1rem; }
        .form-group { display:flex;flex-direction:column;gap:5px;margin-bottom:0.9rem; }
        .form-group label { font-size:0.74rem;font-weight:700;color:var(--text-medium);text-transform:uppercase;letter-spacing:0.06em; }
        .form-group input, .form-group select, .form-group textarea { padding:10px 13px;border:2px solid var(--border);border-radius:7px;font-family:'Nunito Sans',sans-serif;font-size:0.88rem;color:var(--text-dark);outline:none;transition:border-color 0.2s;background:var(--white); }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--navy); }
        .form-group textarea { resize:vertical;min-height:88px; }
        .form-submit { width:100%;padding:14px;background:var(--navy);color:var(--white);border:none;border-radius:8px;font-family:'Nunito Sans',sans-serif;font-size:0.87rem;font-weight:800;letter-spacing:0.06em;text-transform:uppercase;cursor:pointer;transition:var(--transition);margin-top:0.4rem; }
        .form-submit:hover { background:var(--navy-light);transform:translateY(-1px);box-shadow:0 6px 20px rgba(27,58,92,0.3); }
        .form-submit:disabled { opacity:0.7; cursor:not-allowed; transform:none; }
        .form-note { font-size:0.73rem;color:var(--text-light);text-align:center;margin-top:0.7rem; }
        .form-success { display:none;text-align:center;padding:2rem;color:var(--navy); }
        .form-success .tick { font-size:2.5rem;margin-bottom:0.75rem; }
        .form-success h4 { font-family:'Cormorant Garamond',serif;font-size:1.4rem;font-weight:600;margin-bottom:0.5rem; }
        .form-success p { font-size:0.875rem;color:var(--text-light); }

        /* ── FOOTER ── */
        footer { background:var(--navy-dark);border-top:1px solid rgba(201,168,76,0.13);padding:60px 5% 28px; }
        .footer-grid { display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:3rem;max-width:1200px;margin:0 auto 2.5rem; }
        .footer-brand .logo-text { font-family:'Cormorant Garamond',serif;font-size:1.35rem;font-weight:700;color:var(--white); }
        .footer-brand .logo-sub { font-size:0.65rem;color:var(--gold);text-transform:uppercase;letter-spacing:0.1em;font-weight:700;margin-bottom:0.9rem; }
        .footer-brand p { font-size:0.83rem;color:rgba(255,255,255,0.42);line-height:1.72;max-width:280px; }
        .footer-col h4 { font-size:0.68rem;font-weight:800;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.42);margin-bottom:1.1rem; }
        .footer-col ul { list-style:none;display:flex;flex-direction:column;gap:0.65rem; }
        .footer-col ul li a { font-size:0.83rem;color:rgba(255,255,255,0.55);transition:color 0.2s; }
        .footer-col ul li a:hover { color:var(--gold); }
        .footer-contact-item { display:flex;align-items:flex-start;gap:9px;margin-bottom:0.9rem;color:rgba(255,255,255,0.55);font-size:0.83rem; }
        .footer-contact-item svg { color:var(--gold);flex-shrink:0;margin-top:2px; }
        .footer-bottom { max-width:1200px;margin:0 auto;padding-top:1.4rem;border-top:1px solid rgba(255,255,255,0.06);display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem; }
        .footer-bottom p { font-size:0.76rem;color:rgba(255,255,255,0.28); }
        .footer-accreditations { display:flex;gap:0.9rem; }
        .footer-badge { font-size:0.68rem;font-weight:700;color:rgba(255,255,255,0.36);border:1px solid rgba(255,255,255,0.1);padding:4px 9px;border-radius:4px;letter-spacing:0.06em; }

        /* ── FLOATING CTA ── */
        .floating-cta { position:fixed;bottom:1.75rem;right:1.75rem;background:var(--gold);color:var(--navy-dark);padding:12px 20px;border-radius:50px;font-weight:800;font-size:0.8rem;letter-spacing:0.06em;text-transform:uppercase;display:flex;align-items:center;gap:7px;box-shadow:0 6px 24px rgba(201,168,76,0.4);z-index:998;transition:var(--transition);opacity:0;transform:translateY(12px);pointer-events:none; }
        .floating-cta.visible { opacity:1;transform:translateY(0);pointer-events:auto; }
        .floating-cta:hover { background:var(--gold-light);transform:translateY(-2px);box-shadow:0 8px 30px rgba(201,168,76,0.5); }

        /* ── SCROLL REVEAL ── */
        .reveal { opacity:0;transform:translateY(18px);transition:opacity 0.6s ease,transform 0.6s ease; }
        .reveal.visible { opacity:1;transform:translateY(0); }

        /* ══════════════════════════════════════
           RESPONSIVE — TABLET  (≤ 1024px)
        ══════════════════════════════════════ */
        @media(max-width:1024px) {
            .services-grid   { grid-template-columns:repeat(2,1fr); }
            .portfolio-grid  { grid-template-columns:repeat(2,1fr); max-width:100%; }
            .steps-grid      { grid-template-columns:repeat(2,1fr); }
            .steps-grid::before { display:none; }
            .why-layout      { grid-template-columns:1fr; gap:3rem; }
            .about-layout    { grid-template-columns:1fr; gap:3rem; }
            .faq-layout      { grid-template-columns:1fr; gap:2.5rem; }
            .enquire-layout  { grid-template-columns:1fr; gap:3rem; }
            .footer-grid     { grid-template-columns:1fr 1fr; gap:2.5rem; }
            .team-grid       { grid-template-columns:repeat(2,1fr); }
            #services, #why-us, #how-it-works, #about, #portfolio, #faq, #enquire { padding:72px 0; }
            #home { padding:110px 5% 72px; }
        }

        /* ══════════════════════════════════════
           RESPONSIVE — MOBILE  (≤ 768px)
        ══════════════════════════════════════ */
        @media(max-width:768px) {
            /* Nav */
            .nav-links { display:none; }
            .hamburger { display:flex; }
            nav { padding:0 4%; height:68px; }
            nav.scrolled { height:60px; }
            .mobile-menu { top:68px; padding:1.25rem 4%; }

            /* Hero */
            #home { padding:96px 4% 56px; min-height:100svh; }
            /* On mobile, darken overlay more so text is crisp over any slide */
            .hero-overlay {
                background: linear-gradient(to bottom,
                    rgba(8,18,32,0.96) 0%,
                    rgba(8,18,32,0.88) 55%,
                    rgba(6,14,26,0.82) 100%
                );
            }
            /* Mobile slides: centre image rather than right-align */
            .hero-slide { background-position: center center; }
            .hero-deco { display:none; }
            .hero-badge { font-size:0.7rem; padding:5px 13px; margin-bottom:1rem; }
            .hero-title { font-size:clamp(2rem,8.5vw,2.8rem); line-height:1.13; margin-bottom:1rem; }
            .hero-sub { font-size:0.94rem; margin-bottom:1.6rem; max-width:100%; }
            .hero-pills { gap:7px; margin-bottom:1.6rem; }
            .pill { font-size:0.75rem; padding:6px 11px; }
            .hero-cta { flex-direction:column; gap:10px; margin-bottom:2rem; }
            .btn-primary, .btn-secondary { width:100%; justify-content:center; padding:14px 20px; font-size:0.875rem; }
            .hero-contact { flex-direction:column; gap:0.9rem; align-items:flex-start; }
            .hero-contact .contact-item { width:100%; align-items:center; }
            .hero-contact .contact-item .icon { flex-shrink:0; width:36px; height:36px; }
            .scroll-hint { display:none; }

            /* Trust bar — 2-column grid */
            .trust-bar { display:grid; grid-template-columns:1fr 1fr; gap:0; padding:0; }
            .trust-item { padding:11px 4%; border-bottom:1px solid rgba(255,255,255,0.06); font-size:0.73rem; }
            .trust-item:nth-child(odd) { border-right:1px solid rgba(255,255,255,0.06); }
            .trust-divider { display:none; }

            /* Shared */
            .section-inner { padding:0 4%; }
            #services, #why-us, #how-it-works, #about, #portfolio, #faq, #enquire { padding:56px 0; }
            .section-header { margin-bottom:2rem; }
            .section-title { font-size:clamp(1.65rem,6vw,2.1rem); }
            .section-subtitle { font-size:0.88rem; }

            /* Services */
            .services-grid { grid-template-columns:1fr; gap:0.9rem; }
            .service-card { padding:1.4rem; }
            .service-icon { width:44px; height:44px; border-radius:9px; margin-bottom:1rem; }
            .service-card h3 { font-size:1.15rem; }

            /* Why Us */
            .pillar { padding:1.1rem; gap:1rem; }
            .pillar-icon { width:40px; height:40px; }
            .stats-grid { grid-template-columns:1fr 1fr; gap:0.9rem; }
            .stat-card { padding:1.3rem 1rem; }
            .stat-value { font-size:2rem; }
            .energy-chart { padding:1.2rem; margin-top:1rem; }

            /* How it works */
            .steps-grid { grid-template-columns:1fr 1fr; gap:0.75rem; }
            .step { padding:1.3rem 0.75rem; }
            .step-number { width:46px; height:46px; font-size:1.1rem; margin-bottom:0.85rem; }
            .step h3 { font-size:1rem; }
            .step p { font-size:0.82rem; }

            /* About & Team */
            .about-content p { font-size:0.875rem; }
            .accred-row { gap:7px; }
            .accred-badge { font-size:0.73rem; padding:6px 10px; }
            .team-grid { grid-template-columns:1fr 1fr; gap:0.85rem; }
            .team-card { padding:1.1rem; }
            .team-avatar { width:42px; height:42px; font-size:0.9rem; margin-bottom:0.7rem; }
            .team-card h4 { font-size:0.88rem; }
            .team-card .role { font-size:0.65rem; }
            .team-card p { font-size:0.73rem; line-height:1.55; }

            /* Portfolio */
            .portfolio-grid { grid-template-columns:1fr 1fr; gap:0.9rem; }
            .portfolio-visual { height:130px; }

            /* FAQ */
            .faq-question { font-size:0.875rem; padding:1rem 0; }
            .faq-answer-inner { font-size:0.83rem; }

            /* Enquire */
            .enquire-form { padding:1.6rem 1.25rem; border-radius:12px; }
            .form-row { grid-template-columns:1fr 1fr; }
            .enquire-perks { gap:0.7rem; }
            .perk { font-size:0.82rem; }

            /* Footer */
            footer { padding:44px 4% 22px; }
            .footer-grid { grid-template-columns:1fr 1fr; gap:1.75rem; }
            .footer-brand { grid-column:1 / -1; }
            .footer-bottom { flex-direction:column; align-items:flex-start; gap:0.7rem; }
            .footer-accreditations { flex-wrap:wrap; gap:0.5rem; }

            /* Floating CTA */
            .floating-cta { bottom:1rem; right:1rem; padding:10px 16px; font-size:0.74rem; }
        }

        /* ══════════════════════════════════════
           RESPONSIVE — SMALL PHONE  (≤ 480px)
        ══════════════════════════════════════ */
        @media(max-width:480px) {
            /* Hero */
            #home { padding:84px 4% 48px; min-height:100svh; }
            .hero-overlay { background: rgba(8,18,32,0.91); }
            .hero-title { font-size:clamp(1.8rem,9.5vw,2.3rem); }
            .hero-sub { font-size:0.875rem; line-height:1.68; }
            .pill { font-size:0.7rem; padding:5px 9px; gap:5px; }
            .btn-primary, .btn-secondary { font-size:0.83rem; padding:13px 18px; }

            /* Trust bar — full-width single column */
            .trust-bar { grid-template-columns:1fr; }
            .trust-item:nth-child(odd) { border-right:none; }
            .trust-item { justify-content:center; }

            /* Steps — horizontal list layout */
            .steps-grid { grid-template-columns:1fr; gap:0; }
            .step { flex-direction:row; text-align:left; padding:1rem 0; gap:0.9rem;
                    border-bottom:1px solid var(--border); align-items:flex-start; }
            .step:last-child { border-bottom:none; }
            .step-number { flex-shrink:0; margin-bottom:0; width:40px; height:40px; font-size:0.95rem; }
            .step h3 { font-size:0.95rem; margin-bottom:0.2rem; }
            .step p { font-size:0.79rem; }

            /* Team — 2-col but without bio text to keep cards compact */
            .team-grid { grid-template-columns:1fr 1fr; gap:0.75rem; }
            .team-card p { font-size:0.7rem; line-height:1.5; }

            /* Portfolio — single column on tiny screens */
            .portfolio-grid { grid-template-columns:1fr; max-width:420px; margin:0 auto; }
            .portfolio-visual { height:120px; }

            /* Enquire form — full single-column */
            .form-row { grid-template-columns:1fr; }
            .enquire-form { padding:1.35rem 1rem; }
            .enquire-form h3 { font-size:1.25rem; margin-bottom:1.1rem; }

            /* Footer — single column */
            .footer-grid { grid-template-columns:1fr; gap:1.5rem; }
            .footer-brand { grid-column:auto; }
            .footer-bottom p { font-size:0.68rem; }
        }

/* ══════════════════════════════════════
   AREAS WE COVER
══════════════════════════════════════ */
#areas { padding:100px 0; background:var(--white); }
.areas-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.area-card { display:flex; align-items:center; justify-content:space-between; gap:0.75rem; background:var(--off-white); border:1px solid var(--border); border-radius:var(--radius); padding:1.1rem 1.3rem; transition:var(--transition); }
.area-card:hover { border-color:var(--gold); background:var(--white); box-shadow:var(--shadow-md); transform:translateY(-2px); }
.area-card .name { font-weight:700; font-size:0.92rem; color:var(--text-dark); }
.area-card .postcode { font-size:0.7rem; color:var(--text-light); font-weight:600; }
.area-card .go { color:var(--gold); flex-shrink:0; transition:transform 0.25s; }
.area-card:hover .go { transform:translateX(3px); }
.areas-note { margin-top:1.75rem; font-size:0.85rem; color:var(--text-light); text-align:center; }
.areas-note a { color:var(--navy); font-weight:700; text-decoration:underline; }

@media(max-width:1024px){ .areas-grid{ grid-template-columns:repeat(3,1fr);} }
@media(max-width:768px){ #areas{padding:56px 0;} .areas-grid{ grid-template-columns:repeat(2,1fr); gap:0.75rem;} .area-card{padding:0.9rem 1rem;} }
@media(max-width:480px){ .areas-grid{ grid-template-columns:1fr;} }

/* ══════════════════════════════════════
   BREADCRUMB (location / blog pages)
══════════════════════════════════════ */
.breadcrumb { padding:100px 5% 0; max-width:1200px; margin:0 auto; font-size:0.8rem; color:var(--text-light); }
.breadcrumb a { color:var(--navy); font-weight:600; }
.breadcrumb a:hover { color:var(--gold); text-decoration:underline; }
.breadcrumb .sep { margin:0 6px; color:var(--border); }
@media(max-width:768px){ .breadcrumb{ padding:84px 4% 0; font-size:0.75rem; } }

/* ══════════════════════════════════════
   LOCATION PAGE HERO (simpler, static)
══════════════════════════════════════ */
.local-hero { background:linear-gradient(135deg,var(--navy-dark),var(--navy)); padding:40px 5% 64px; }
.local-hero .section-inner { padding:0 5%; max-width:1200px; margin:0 auto; }
.local-hero h1 { font-family:'Cormorant Garamond',serif; font-size:clamp(2.2rem,4.4vw,3.2rem); font-weight:600; color:var(--white); line-height:1.15; margin-bottom:1rem; max-width:760px; }
.local-hero h1 .highlight { color:var(--gold); font-style:italic; }
.local-hero p.lede { font-size:1.02rem; color:rgba(255,255,255,0.72); line-height:1.75; max-width:640px; margin-bottom:1.75rem; }
.local-hero .hero-cta { margin-bottom:0; }
@media(max-width:768px){ .local-hero{ padding:28px 4% 48px;} .local-hero .section-inner{ padding:0 4%;} }

/* ══════════════════════════════════════
   LOCAL INFO GRID (postcodes / landmarks / nearby areas)
══════════════════════════════════════ */
.local-info-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; margin-top:0; }
.local-info-card { background:var(--off-white); border:1px solid var(--border); border-radius:var(--radius); padding:1.6rem; }
.local-info-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:600; color:var(--text-dark); margin-bottom:0.6rem; }
.local-info-card p, .local-info-card li { font-size:0.85rem; color:var(--text-light); line-height:1.7; }
.local-info-card ul { list-style:none; display:flex; flex-wrap:wrap; gap:6px; }
.local-info-card ul li { background:var(--white); border:1px solid var(--border); border-radius:6px; padding:4px 10px; font-size:0.78rem; font-weight:600; color:var(--navy); }
@media(max-width:1024px){ .local-info-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:768px){ .local-info-grid{ grid-template-columns:1fr; gap:1rem; } }

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
#blog-list { padding:56px 0 100px; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.blog-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; transition:var(--transition); display:flex; flex-direction:column; }
.blog-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:rgba(27,58,92,0.14); }
.blog-card .blog-card-body { padding:1.6rem; display:flex; flex-direction:column; gap:0.6rem; flex:1; }
.blog-card .tag { font-size:0.68rem; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); }
.blog-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:600; color:var(--text-dark); line-height:1.3; }
.blog-card p { font-size:0.85rem; color:var(--text-light); line-height:1.68; flex:1; }
.blog-card .read-more { font-size:0.8rem; font-weight:700; color:var(--navy); display:inline-flex; align-items:center; gap:5px; }
@media(max-width:1024px){ .blog-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:768px){ .blog-grid{ grid-template-columns:1fr; gap:1rem; } #blog-list{ padding:40px 0 64px;} }

/* ══════════════════════════════════════
   ARTICLE (blog post)
══════════════════════════════════════ */
.article-wrap { max-width:760px; margin:0 auto; padding:40px 5% 100px; }
.article-wrap h1 { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,4.2vw,2.8rem); font-weight:600; color:var(--text-dark); line-height:1.18; margin-bottom:1rem; }
.article-meta { font-size:0.8rem; color:var(--text-light); margin-bottom:2rem; padding-bottom:1.5rem; border-bottom:1px solid var(--border); }
.article-body h2 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:600; color:var(--text-dark); margin:2.2rem 0 0.9rem; }
.article-body h3 { font-size:1.05rem; font-weight:700; color:var(--text-dark); margin:1.6rem 0 0.6rem; }
.article-body p { font-size:0.95rem; color:var(--text-medium); line-height:1.85; margin-bottom:1.1rem; }
.article-body ul, .article-body ol { margin:0 0 1.1rem 1.3rem; color:var(--text-medium); font-size:0.95rem; line-height:1.85; }
.article-body li { margin-bottom:0.4rem; }
.article-body a { color:var(--navy); font-weight:700; text-decoration:underline; text-decoration-color:rgba(27,58,92,0.3); }
.article-cta { margin-top:2.5rem; padding:2rem; background:var(--off-white); border:1px solid var(--border); border-radius:var(--radius); text-align:center; }
.article-cta h3 { font-family:'Cormorant Garamond',serif; font-size:1.3rem; margin-bottom:0.6rem; color:var(--text-dark); }
.article-cta p { font-size:0.88rem; color:var(--text-light); margin-bottom:1.2rem; }
@media(max-width:768px){ .article-wrap{ padding:32px 4% 64px; } }

/* ══════════════════════════════════════
   FOOTER — 5-column variant (adds Areas column)
══════════════════════════════════════ */
.footer-grid.with-areas { grid-template-columns: 1.8fr 1fr 1fr 1fr 1.1fr; }
@media(max-width:1024px){ .footer-grid.with-areas { grid-template-columns:1fr 1fr; } }
