:root {
      --white: #FFFFFF;
      --off-white: #F5F7FA;
      --soft-grey: #ECEEF3;
      --line: #DDE0EA;
      --line-soft: #E8EAF2;
      --ink: #1F2024;
      --ink-soft: #2F3138;
      --ink-mute: #52545B;
      --ink-quiet: #75767D;

      /* Noble Clean primary — the actual brand green */
      --green: #1D8648;
      --green-deep: #156335;
      --green-dark: #0D4222;
      --green-fresh: #2DAD5F;
      --green-soft: #E4F3EC;

      /* Noble Clean primary — navy */
      --navy: #213265;
      --navy-deep: #172449;
      --navy-dark: #0E1730;
      --navy-soft: #EAECf4;

      /* Noble Clean accent — aqua */
      --aqua: #51C4C9;
      --aqua-deep: #2D9E82;
      --aqua-soft: #E2F6F7;

      --font-display: "Source Serif 4", ui-serif, Georgia, serif;
      --font-body: "Figtree", ui-sans-serif, system-ui, sans-serif;
      --maxw: 1280px;
      --gutter: clamp(20px, 4vw, 56px);
      --shadow-sm: 0 1px 2px rgba(33,50,101,0.05), 0 2px 8px rgba(33,50,101,0.04);
      --shadow-md: 0 4px 12px rgba(33,50,101,0.08), 0 12px 32px rgba(33,50,101,0.07);
      --shadow-lg: 0 20px 40px -20px rgba(33,50,101,0.22);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--font-body); font-size: 17px; line-height: 1.6; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
    h1 { font-size: clamp(2.8rem, 6.5vw, 5.6rem); line-height: 1; letter-spacing: -0.04em; font-weight: 400; font-variation-settings: "opsz" 144, "SOFT" 50; }
    h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -0.025em; font-weight: 400; font-variation-settings: "opsz" 100; }
    h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); line-height: 1.2; letter-spacing: -0.015em; }
    em { font-style: italic; font-weight: 300; color: var(--green); font-variation-settings: "opsz" 144, "SOFT" 100; }

    .eyebrow { font-family: var(--font-body); font-weight: 600; font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 10px; }
    .eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--navy); }
    .eyebrow.green { color: var(--green-deep); }
    .eyebrow.green::before { background: var(--green); }

    .wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); position: relative; }
    section { position: relative; }


    /* ── BADGE BAR — BBB + Green Biz front and center ── */
    .badge-bar { background: var(--white); border-bottom: 1px solid var(--line); padding: 12px 0; }
    .badge-bar .wrap { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
    .badge-link { display: inline-flex; align-items: center; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
    .badge-link:hover { opacity: 0.8; transform: translateY(-1px); }
    .badge-link img { display: block; width: auto; border: 0; }
    .badge-bbb { height: 64px; }
    .badge-green { height: 52px; }
    @media (max-width: 640px) { .badge-bbb { height: 52px; } .badge-green { height: 42px; } .badge-bar .wrap { gap: 20px; } }

    /* ── ANNOUNCE BAR ── */
    .announce { background: var(--navy); color: var(--white); font-size: 13px; }
    .announce .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; gap: 16px; }
    .announce-left { display: inline-flex; align-items: center; gap: 10px; }
    .announce-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 4px rgba(81,196,201,0.25); }
    .announce a { font-weight: 600; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 1px; }
    .announce a:hover { border-color: var(--white); }
    @media (max-width: 640px) { .announce-right { display: none; } }

    /* ── NAV ── */
    .nav { position: sticky; top: 0; background: rgba(255,255,255,0.93); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); z-index: 50; }
    .nav .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; }
    .brand { display: inline-flex; align-items: center; color: var(--ink); flex-shrink: 0; }
    .brand-logo { height: 48px; width: auto; display: block; }
    /* keep mobile leaf for mobile menu head fallback */
    .brand-leaf { width: 36px; height: 36px; background: var(--green-soft); border-radius: 50%; display: grid; place-items: center; }
    .brand-leaf svg { width: 20px; height: 20px; color: var(--green-deep); }
    .brand-wordmark { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
    .brand-wordmark .name { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.03em; color: var(--green-dark); }
    .brand-wordmark .sub { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }

    nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; color: var(--ink-mute); }
    nav ul a { position: relative; padding: 4px 0; transition: color 0.2s; }
    nav ul a:hover { color: var(--navy); }
    nav ul a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
    nav ul a:hover::after { transform: scaleX(1); }

    .nav-cta { background: var(--navy); color: var(--white); padding: 11px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s ease; box-shadow: 0 2px 8px rgba(33,50,101,0.22); white-space: nowrap; }
    .nav-cta:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(33,50,101,0.32); }
    .nav-cta svg { width: 14px; height: 14px; }

    .mobile-controls { display: none; align-items: center; gap: 8px; }
    .mobile-phone, .hamburger { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); background: var(--white); color: var(--ink); cursor: pointer; transition: all 0.2s; padding: 0; }
    .mobile-phone { color: var(--navy); border-color: var(--navy-soft); background: var(--navy-soft); }
    .mobile-phone svg, .hamburger svg { width: 18px; height: 18px; }
    .hamburger { position: relative; }
    .hamburger span { display: block; position: absolute; left: 12px; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s cubic-bezier(.2,.7,.3,1); }
    .hamburger span:nth-child(1) { top: 15px; }
    .hamburger span:nth-child(2) { top: 21px; }
    .hamburger span:nth-child(3) { top: 27px; }
    .hamburger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
    .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

    @media (max-width: 960px) { nav ul { display: none; } .nav-cta { display: none; } .mobile-controls { display: flex; } }

    /* Mobile menu */
    .mobile-menu { position: fixed; inset: 0; background: var(--white); z-index: 100; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(-20px); transition: opacity 0.35s cubic-bezier(.2,.7,.3,1), transform 0.35s cubic-bezier(.2,.7,.3,1), visibility 0s 0.35s; overflow-y: auto; }
    .mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity 0.35s cubic-bezier(.2,.7,.3,1), transform 0.35s cubic-bezier(.2,.7,.3,1), visibility 0s; }
    .mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding: 14px clamp(20px, 4vw, 56px); border-bottom: 1px solid var(--line); }
    .mobile-menu-nav { padding: 24px clamp(20px, 4vw, 56px); flex: 1; }
    .mobile-menu-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
    .mobile-menu-nav li { border-bottom: 1px solid var(--line-soft); }
    .mobile-menu-nav a { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; letter-spacing: -0.02em; color: var(--ink); transition: color 0.2s, padding-left 0.25s; }
    .mobile-menu-nav a:hover { color: var(--navy); padding-left: 8px; }
    .mobile-menu-nav a svg { width: 20px; height: 20px; color: var(--ink-quiet); }
    .mobile-menu-foot { padding: 20px clamp(20px,4vw,56px) 40px; border-top: 1px solid var(--line); background: var(--off-white); display: flex; flex-direction: column; gap: 12px; }
    .mobile-menu-foot .btn { width: 100%; justify-content: center; }
    .mobile-menu-foot .contact-row { display: flex; gap: 14px; font-size: 12.5px; color: var(--ink-mute); margin-top: 8px; justify-content: center; flex-wrap: wrap; }
    body.menu-open { overflow: hidden; }

    /* ── BUTTONS ── */
    .btn { padding: 16px 28px; border-radius: 999px; font-size: 15px; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; border: 1.5px solid transparent; transition: all 0.3s cubic-bezier(.2,.7,.3,1); cursor: pointer; font-family: var(--font-body); line-height: 1; }
    .btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 4px 14px rgba(33,50,101,0.22); }
    .btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(33,50,101,0.32); }
    .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
    .btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
    .btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; flex-shrink: 0; }
    .btn:hover svg { transform: translateX(3px); }

    /* ── HERO ── */
    .hero { padding: clamp(60px,9vh,110px) 0 0; position: relative; overflow: hidden; background: var(--white); }
    .hero::before { content: ""; position: absolute; top: -10%; right: -5%; width: 55%; height: 80%; background: radial-gradient(ellipse at 70% 30%, rgba(33,50,101,0.06) 0%, transparent 60%); pointer-events: none; }
    .hero .wrap { position: relative; z-index: 2; }
    .hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
    @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

    .hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
    .green-cert-pill { display: inline-flex; align-items: center; gap: 7px; background: var(--green-soft); color: var(--green-deep); font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(46,139,60,0.15); }
    .green-cert-pill svg { width: 14px; height: 14px; }

    .hero h1 em { color: var(--green); }
    .hero-sub { max-width: 480px; font-size: clamp(16px, 1.1vw, 18px); color: var(--ink-mute); margin: 28px 0 38px; line-height: 1.6; }
    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

    /* ── HERO STATS BAND (the signature) ── */
    .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-top: 48px; }
    .hero-stat { background: var(--white); padding: 22px 24px; display: flex; flex-direction: column; gap: 2px; }
    .hero-stat-num { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 400; color: var(--navy); letter-spacing: -0.04em; line-height: 1; font-variation-settings: "opsz" 144; }
    .hero-stat-num span { color: var(--green); }
    .hero-stat-label { font-size: 12px; font-weight: 600; color: var(--ink-quiet); letter-spacing: 0.08em; text-transform: uppercase; }
    @media (max-width: 480px) { .hero-stats { grid-template-columns: 1fr; } }

    /* Hero image side */
    .hero-image-wrap { position: relative; }
    .hero-image { position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(13,22,18,0.22), 0 10px 24px -8px rgba(13,22,18,0.1); }
    .hero-image-bg { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--navy-dark); }

    .hero-badge { position: absolute; bottom: 24px; left: -24px; background: var(--white); padding: 16px 20px; border-radius: 10px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; max-width: 270px; border: 1px solid var(--line-soft); }
    .hero-badge-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--aqua-soft); display: grid; place-items: center; color: var(--navy); flex-shrink: 0; }
    .hero-badge-icon svg { width: 20px; height: 20px; }
    .hero-badge-text { font-size: 12.5px; color: var(--ink-mute); line-height: 1.35; }
    .hero-badge-text strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 14.5px; color: var(--ink); margin-bottom: 2px; letter-spacing: -0.01em; }
    @media (max-width: 640px) { .hero-badge { left: 12px; right: 12px; bottom: 12px; max-width: none; } }

    /* ── TRUST BAR ── */
    .trust { border-top: 1px solid var(--line); padding: 26px 0; background: var(--off-white); }
    .trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; }
    .trust-item { display: flex; align-items: center; gap: 13px; font-size: 13px; color: var(--ink-mute); line-height: 1.3; }
    .trust-item svg { width: 22px; height: 22px; color: var(--navy); flex-shrink: 0; }
    .trust-item strong { display: block; color: var(--ink); font-family: var(--font-display); font-weight: 500; font-size: 15.5px; letter-spacing: -0.01em; }
    @media (max-width: 760px) { .trust .wrap { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 440px) { .trust .wrap { grid-template-columns: 1fr; } }


    /* ── SERVICES ── */
    .services { padding: clamp(70px, 10vh, 110px) 0; }
    .services-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: clamp(44px, 6vh, 64px); }
    @media (max-width: 760px) { .services-head { grid-template-columns: 1fr; } }
    .services-head p { color: var(--ink-mute); font-size: 16px; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    @media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

    .service { background: var(--off-white); border: 1px solid var(--line); border-radius: 12px; padding: 28px 26px; display: flex; flex-direction: column; gap: 12px; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
    .service:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .service.feat { background: var(--navy); border-color: var(--navy); color: var(--white); grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; align-items: start; }
    @media (max-width: 900px) { .service.feat { grid-column: span 1; display: flex; flex-direction: column; } }
    .service.feat h3 { color: var(--white); }
    .service.feat .service-desc { color: rgba(255,255,255,0.72); }
    .service.feat .service-tag { color: var(--aqua); background: rgba(81,196,201,0.15); border-color: rgba(81,196,201,0.3); align-self: start; }

    .service-icon { width: 44px; height: 44px; background: var(--navy-soft); border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
    .service.feat .service-icon { background: rgba(255,255,255,0.12); }
    .service-icon svg { width: 22px; height: 22px; color: var(--navy); }
    .service.feat .service-icon svg { color: var(--aqua); }
    .service-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); background: var(--navy-soft); border: 1px solid rgba(33,50,101,0.15); padding: 4px 10px; border-radius: 999px; align-self: flex-start; }
    .service h3 { margin: 0; }
    .service-desc { font-size: 14.5px; color: var(--ink-mute); line-height: 1.55; margin: 0; }

    /* ── WHO WE SERVE ── */
    .serve { padding: clamp(70px,10vh,110px) 0; background: var(--off-white); }
    .serve-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px,6vw,80px); align-items: start; }
    @media (max-width: 800px) { .serve-inner { grid-template-columns: 1fr; } }
    .serve-copy h2 { margin-top: 22px; }
    .serve-copy p { color: var(--ink-mute); margin-top: 18px; max-width: 380px; }
    .serve-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
    @media (max-width: 560px) { .serve-grid { grid-template-columns: 1fr; } }
    .serve-item { display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); transition: border-color 0.2s, color 0.2s; }
    .serve-item:hover { border-color: var(--navy); color: var(--navy); }
    .serve-item svg { width: 18px; height: 18px; color: var(--navy); flex-shrink: 0; }

    /* ── ABOUT / FOUNDER ── */
    .about { padding: clamp(70px,10vh,110px) 0; }
    .about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(50px,7vw,100px); align-items: center; }
    @media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
    .about-image { position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; background: var(--navy-soft); }
    .about-image-img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .about-badge { position: absolute; bottom: 20px; right: 20px; background: var(--white); padding: 12px 18px; border-radius: 8px; box-shadow: var(--shadow-sm); font-size: 12.5px; font-weight: 600; color: var(--ink-soft); border: 1px solid var(--line-soft); }
    .about-copy h2 { margin-top: 22px; }
    .about-copy p { color: var(--ink-mute); margin-top: 18px; }
    .pull { background: var(--navy-soft); border-left: 3px solid var(--navy); border-radius: 0 8px 8px 0; padding: 18px 22px; margin: 28px 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--navy-deep); font-weight: 400; font-style: italic; line-height: 1.45; font-variation-settings: "opsz" 100, "SOFT" 60; }
    .about-sig { margin-top: 28px; display: flex; flex-direction: column; gap: 3px; }
    .about-sig strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); letter-spacing: -0.01em; }
    .about-sig span { font-size: 13px; color: var(--ink-quiet); }

    /* ── GREEN COMMITMENT ── */
    .green-section { padding: clamp(70px,10vh,110px) 0; background: var(--green-dark); color: var(--white); }
    .green-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(50px,7vw,100px); align-items: center; }
    @media (max-width: 860px) { .green-grid { grid-template-columns: 1fr; } }
    .green-copy .eyebrow { color: var(--aqua); }
    .green-copy .eyebrow::before { background: var(--aqua); }
    .green-copy h2 { color: var(--white); margin-top: 22px; }
    .green-copy p { color: rgba(255,255,255,0.7); margin-top: 18px; }
    .green-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
    .green-point { display: flex; gap: 16px; align-items: flex-start; }
    .green-point-icon { width: 42px; height: 42px; background: rgba(81,196,201,0.12); border: 1px solid rgba(81,196,201,0.2); border-radius: 50%; display: grid; place-items: center; color: var(--aqua); flex-shrink: 0; }
    .green-point-icon svg { width: 20px; height: 20px; }
    .green-point-text strong { display: block; color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
    .green-point-text span { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.5; }
    .green-cert-block { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 20px; }
    .green-cert-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); font-weight: 500; }
    .green-cert-body { font-size: 14.5px; color: rgba(255,255,255,0.65); line-height: 1.6; }
    .green-cert-certs { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
    .green-cert-row { display: flex; align-items: center; gap: 12px; font-size: 13.5px; font-weight: 600; color: var(--aqua); }
    .green-cert-row svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* ── TESTIMONIALS ── */
    .testimonials { padding: clamp(70px,10vh,110px) 0; background: var(--off-white); }
    .testimonials-head { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; margin-bottom: clamp(44px,6vh,64px); }
    @media (max-width: 640px) { .testimonials-head { grid-template-columns: 1fr; } }
    .testimonials-head h2 { margin-top: 22px; }
    .stars-block { text-align: right; }
    .stars { font-size: 22px; color: #F59E0B; letter-spacing: 2px; }
    .stars-meta { font-size: 12.5px; color: var(--ink-quiet); margin-top: 6px; }
    .tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    @media (max-width: 860px) { .tm-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .tm-grid { grid-template-columns: 1fr; } }
    .tm { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 28px; display: flex; flex-direction: column; gap: 20px; margin: 0; transition: box-shadow 0.25s, transform 0.25s; }
    .tm:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .tm-stars { color: #F59E0B; font-size: 14px; letter-spacing: 1.5px; }
    .tm-source { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-quiet); border: 1px solid var(--line); padding: 3px 8px; border-radius: 4px; }
    .tm-quote { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink-soft); line-height: 1.5; font-style: italic; font-weight: 300; font-variation-settings: "opsz" 100; flex: 1; margin: 0; }
    .tm-who { display: flex; align-items: center; gap: 10px; }
    .tm-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--navy-soft); color: var(--navy); font-size: 13px; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; }
    .tm-name { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.2; }
    .tm-detail { font-size: 12px; color: var(--ink-quiet); }
    .tm-live { margin-top: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
    .tm-live-head { display: flex; align-items: center; gap: 12px; padding: 16px 24px; border-bottom: 1px solid var(--line-soft); font-size: 12.5px; color: var(--ink-mute); }
    .tm-live-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
    .tm-live-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-fresh); animation: tm-live-pulse 2s ease-in-out infinite; }
    @keyframes tm-live-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
    @media (prefers-reduced-motion: reduce) { .tm-live-badge::before { animation: none; } }
    .tm-live-iframe { display: block; width: 100%; height: 780px; border: 0; background: var(--white); }
    @media (max-width: 560px) { .tm-live-iframe { height: 960px; } }

    /* ── PROCESS ── */
    .process { padding: clamp(70px,10vh,110px) 0; }
    .process-head { text-align: center; margin-bottom: clamp(50px,7vh,70px); }
    .process-head h2 { margin-top: 22px; }
    .process-head p { color: var(--ink-mute); max-width: 480px; margin: 18px auto 0; }
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    @media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
    .step { display: flex; flex-direction: column; gap: 14px; }
    .step-num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 300; color: var(--navy-soft); line-height: 1; letter-spacing: -0.05em; font-variation-settings: "opsz" 144; }
    .step h3 { margin: 0; }
    .step p { font-size: 14.5px; color: var(--ink-mute); margin: 0; line-height: 1.55; }

    /* ── AREAS ── */
    .areas { padding: clamp(70px,10vh,110px) 0; background: var(--off-white); }
    .areas-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(40px,6vw,80px); }
    @media (max-width: 800px) { .areas-inner { grid-template-columns: 1fr; } }
    .areas-copy h2 { margin-top: 22px; }
    .areas-copy p { color: var(--ink-mute); margin-top: 18px; max-width: 360px; }
    .areas-regions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    @media (max-width: 480px) { .areas-regions { grid-template-columns: 1fr; } }
    .region { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 20px; }
    .region-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
    .region-label::before { content: ""; width: 18px; height: 1px; background: var(--navy); }
    .region ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
    .region ul li { font-size: 13.5px; color: var(--ink-mute); }

    /* ── FINAL CTA ── */
    .final { padding: clamp(80px,12vh,130px) 0; background: var(--navy); color: var(--white); text-align: center; }
    .final .eyebrow { color: var(--aqua); justify-content: center; }
    .final .eyebrow::before { background: var(--aqua); }
    .final h2 { color: var(--white); margin-top: 22px; }
    .final p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 18px auto 0; }
    .final-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
    .btn-white { background: var(--white); color: var(--green-dark); border-color: var(--white); }
    .btn-white:hover { background: var(--green-soft); color: var(--green-dark); border-color: var(--green-soft); transform: translateY(-2px); }
    .btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
    .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

    .form-block { max-width: 680px; margin: 56px auto 0; text-align: left; }
    .field-hint { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
    .form-consent { display: flex; align-items: flex-start; gap: 11px; margin-top: 22px; font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,0.62); cursor: pointer; }
    .form-consent input { margin-top: 2px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--aqua); cursor: pointer; }
    .form-consent a { color: var(--aqua); text-decoration: underline; }
    .form-section-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aqua); margin: 26px 0 12px; }
    .form-section-label:first-of-type { margin-top: 0; }
    .form-divider { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,0.35); font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px; }
    .form-divider::before, .form-divider::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.15); }
    .form { display: flex; flex-direction: column; gap: 14px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
    .field { display: flex; flex-direction: column; gap: 6px; }
    .field label { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }
    .field input, .field textarea, .field select { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 13px 16px; color: var(--white); font-family: var(--font-body); font-size: 15px; outline: none; transition: border-color 0.2s, background 0.2s; width: 100%; }
    .field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
    .field input:focus, .field textarea:focus, .field select:focus { border-color: var(--aqua); background: rgba(255,255,255,0.11); }
    .field select option { background: var(--green-dark); }
    .field textarea { resize: vertical; min-height: 100px; }
    .form-submit { align-self: flex-start; width: 100%; justify-content: center; }

    /* ── FOOTER ── */
    footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: clamp(50px,8vh,80px) 0 30px; }
    .foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    @media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; gap: 30px; } }
    .foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .foot-brand-leaf { width: 32px; height: 32px; background: var(--green-soft); border-radius: 50%; display: grid; place-items: center; }
    .foot-brand-leaf svg { width: 18px; height: 18px; color: var(--green-deep); }
    .foot-brand-text { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--white); letter-spacing: -0.02em; line-height: 1; }
    .foot-brand-text span { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 4px; }
    .foot-desc { font-size: 14px; line-height: 1.6; max-width: 280px; }
    .foot-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 20px; font-size: 13px; }
    .foot-contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
    .foot-contact a:hover { color: var(--aqua); }
    footer h4 { font-family: var(--font-body); font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin: 0 0 18px; }
    footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
    footer ul a { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    footer ul a:hover { color: var(--white); }
    .foot-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 12.5px; gap: 16px; flex-wrap: wrap; }
    .foot-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
    .foot-bottom a:hover { color: rgba(255,255,255,0.75); }
    .foot-bottom span { display: flex; gap: 20px; flex-wrap: wrap; }

    /* ── REVEAL ── */
    [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(.2,.7,.3,1), transform 0.6s cubic-bezier(.2,.7,.3,1); }
    [data-reveal].in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

    /* ── The NobleClean Promise ── */
    .promise { padding: clamp(70px,10vh,110px) 0; background: var(--navy); color: var(--white); }
    .promise .eyebrow { color: var(--aqua); }
    .promise-head { max-width: 740px; }
    .promise-head h2 { color: var(--white); margin-top: 22px; }
    .promise-head h2 em { color: var(--aqua); }
    .promise-head p { color: rgba(255,255,255,0.80); margin-top: 18px; max-width: 620px; }
    .promise-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; overflow: hidden; }
    .promise-item { background: var(--navy); padding: 32px 30px; }
    .promise-num { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.14em; color: var(--aqua); font-weight: 700; }
    .promise-item h3 { font-family: var(--font-display); font-size: 20px; line-height: 1.2; margin: 14px 0 10px; color: var(--white); }
    .promise-item p { font-size: 14.5px; line-height: 1.58; color: rgba(255,255,255,0.76); }
    @media (max-width: 860px) { .promise-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .promise-grid { grid-template-columns: 1fr; } }

    /* ── FAQ ── */
    .faq { padding: clamp(70px,10vh,110px) 0; background: var(--off-white); }
    .faq-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
    .faq-head h2 { margin-top: 22px; }
    .faq-head p { color: var(--ink-mute); margin-top: 16px; }
    .faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
    .faq-item summary { cursor: pointer; list-style: none; padding: 20px 24px; font-family: var(--font-display); font-size: 16.5px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: "+"; font-size: 22px; line-height: 1; color: var(--navy); font-weight: 400; flex-shrink: 0; }
    .faq-item[open] summary::after { content: "\2013"; }
    .faq-item summary:hover { color: var(--navy); }
    .faq-answer { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.62; }
    .faq-answer a { color: var(--navy); }

/* ── INTERIOR PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--white); padding: clamp(56px,8vh,90px) 0 clamp(48px,7vh,78px); }
.page-hero .eyebrow { color: var(--aqua); }
.page-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.1rem, 4.5vw, 3.2rem); line-height: 1.08; letter-spacing: -0.01em; margin: 20px 0 0; color: var(--white); }
.page-hero h1 em { font-style: italic; color: var(--aqua); }
.page-hero .page-hero-sub { max-width: 640px; margin-top: 18px; font-size: 1.05rem; line-height: 1.65; color: rgba(255,255,255,0.78); }
.page-hero .crumbs { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.page-hero .crumbs a { color: rgba(255,255,255,0.75); text-decoration: none; }
.page-hero .crumbs a:hover { color: var(--aqua); }

/* ── SERVICE DETAIL BLOCKS (services page) ── */
.svc-detail { padding: clamp(56px,8vh,88px) 0; border-bottom: 1px solid var(--line-soft); }
.svc-detail:nth-child(even) { background: var(--off-white); }
.svc-detail-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px,5vw,72px); align-items: start; }
@media (max-width: 860px) { .svc-detail-grid { grid-template-columns: 1fr; } }
.svc-detail .service-icon { margin-bottom: 18px; }
.svc-detail h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem,2.6vw,2.1rem); color: var(--ink); margin: 10px 0 14px; }
.svc-detail p { color: var(--ink-mute); line-height: 1.7; margin: 0 0 14px; }
.svc-list { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.svc-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.svc-list li::before { content: "✓"; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 11px; font-weight: 800; display: grid; place-items: center; margin-top: 1px; }
.svc-detail .svc-cta { margin-top: 22px; }

/* ── REVIEWS PAGE — leave-a-review card ── */
.tm-leave { background: var(--navy); border: 1px solid var(--navy); border-radius: 12px; padding: 28px; display: flex; flex-direction: column; gap: 14px; justify-content: center; color: var(--white); }
.tm-leave h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin: 0; }
.tm-leave p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0; }
.tm-leave .btn { align-self: flex-start; }

/* ── HOME → PAGE LINK ROW ── */
.section-more { text-align: center; margin-top: 36px; }
.svc-detail-media { align-self: stretch; }
.svc-detail-img { width: 100%; height: 100%; max-height: 440px; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow-md); }
[id] { scroll-margin-top: 90px; }


/* ── NAV: services dropdown ── */
.has-sub { position: relative; }
.has-sub > a { display: inline-flex; align-items: center; gap: 5px; }
.has-sub .chev { width: 12px; height: 12px; transition: transform 0.25s; }
.has-sub:hover .chev, .has-sub:focus-within .chev, .has-sub.open .chev { transform: rotate(180deg); }
nav ul.sub { position: absolute; top: calc(100% + 10px); left: -14px; min-width: 300px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md); padding: 8px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity 0.2s, transform 0.2s, visibility 0s 0.2s; z-index: 60; }
nav ul.sub::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.has-sub:hover > ul.sub, .has-sub:focus-within > ul.sub, .has-sub.open > ul.sub { opacity: 1; visibility: visible; transform: none; transition: opacity 0.2s, transform 0.2s, visibility 0s; }
nav ul.sub a { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: 8px; color: var(--ink); }
nav ul.sub a::after { display: none; }
nav ul.sub a:hover { background: var(--navy-soft); color: var(--navy); }
nav ul.sub a strong { font-weight: 600; font-size: 14px; }
nav ul.sub a span { font-size: 12px; color: var(--ink-quiet); font-weight: 400; }
nav ul.sub .sub-all a { flex-direction: row; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--navy); border-top: 1px solid var(--line-soft); border-radius: 0 0 8px 8px; margin-top: 4px; padding-top: 12px; }
nav ul.sub .sub-all a svg { width: 14px; height: 14px; }
.mobile-sub { list-style: none; margin: 0; padding: 0 0 12px 22px; display: flex; flex-direction: column; }
.mobile-sub li { border-bottom: 0; }
.mobile-menu-nav .mobile-sub a { font-family: var(--font-body); font-size: 1.02rem; font-weight: 500; padding: 11px 0; color: var(--ink-mute); }
.mobile-menu-nav .mobile-sub a svg { width: 16px; height: 16px; }

/* ── SERVICES GRID: photo cards ── */
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.chip { font-size: 12.5px; font-weight: 600; color: var(--navy); background: var(--navy-soft); border: 1px solid rgba(33,50,101,0.15); padding: 7px 14px; border-radius: 999px; transition: all 0.2s; }
.chip:hover { background: var(--navy); color: var(--white); }
.service { padding: 0; overflow: hidden; gap: 0; }
.service-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-soft); }
.service-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(.2,.7,.3,1); }
.service:hover .service-media img { transform: scale(1.04); }
.service-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-top { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.service-top .service-tag { align-self: center; }
.service-more { margin-top: auto; padding-top: 8px; font-size: 13.5px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.service-more svg { width: 14px; height: 14px; transition: transform 0.3s; }
.service:hover .service-more svg { transform: translateX(3px); }
.service.feat { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; align-items: stretch; padding: 0; }
.service.feat .service-media { aspect-ratio: auto; height: 100%; min-height: 280px; }
.service.feat .service-body { padding: 30px 32px; justify-content: center; }
.service.feat .service-more { color: var(--aqua); }
@media (max-width: 900px) { .service.feat { display: flex; flex-direction: column; } .service.feat .service-media { aspect-ratio: 16 / 10; min-height: 0; } }

/* ── INTERIOR HERO CTAs ── */
.page-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.svc-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SERVICES HUB: category cards ── */
.cats { padding: clamp(60px,9vh,100px) 0 clamp(30px,5vh,50px); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: 1fr; } }
.cat { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.cat:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cat-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-soft); }
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.2,.7,.3,1); }
.cat:hover .cat-media img { transform: scale(1.04); }
.cat-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.cat-body h2 { font-size: clamp(1.4rem, 2vw, 1.7rem); font-weight: 600; letter-spacing: -0.02em; }
.cat-body p { color: var(--ink-mute); font-size: 15px; line-height: 1.6; margin: 0; }
.cat-list { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.cat-list li { font-size: 14px; color: var(--ink-soft); padding-left: 18px; position: relative; }
.cat-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.cat-more { margin-top: auto; padding-top: 12px; font-size: 14px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.cat-more svg { width: 14px; height: 14px; transition: transform 0.3s; }
.cat:hover .cat-more svg { transform: translateX(3px); }
.az { padding: clamp(40px,6vh,64px) 0 clamp(60px,9vh,100px); }
.az-head h2 { margin-top: 22px; }
.az-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 24px; }
@media (max-width: 760px) { .az-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .az-list { grid-template-columns: 1fr; } }
.az-list a { display: block; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); background: var(--off-white); transition: all 0.2s; }
.az-list a:hover { border-color: var(--navy); color: var(--navy); background: var(--white); }

/* ── COMMERCIAL: also-for-businesses strip ── */
.also { padding: clamp(56px,8vh,88px) 0; background: var(--off-white); border-bottom: 1px solid var(--line-soft); }
.also-head h2 { margin-top: 22px; }
.also-grid { margin-top: 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .also-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .also-grid { grid-template-columns: 1fr; } }
.also-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 6px; transition: all 0.2s; }
.also-card:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.also-card strong { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.also-card span { font-size: 13.5px; color: var(--ink-mute); line-height: 1.5; }

/* ── RESIDENTIAL: tiers ── */
.tiers { padding: clamp(70px,10vh,110px) 0; }
.tiers-head { max-width: 720px; margin-bottom: clamp(40px,6vh,56px); }
.tiers-head h2 { margin-top: 22px; }
.tiers-head p { color: var(--ink-mute); margin-top: 18px; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }
.tier { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.25s, transform 0.25s; }
.tier:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tier-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; color: var(--white); }
.tier-green .tier-head { background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%); }
.tier-navy .tier-head { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); }
.tier-aqua .tier-head { background: linear-gradient(135deg, var(--aqua-deep) 0%, #1f7f6b 100%); }
.tier-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.25); display: grid; place-items: center; }
.tier-icon svg { width: 26px; height: 26px; color: var(--white); stroke-width: 1.6; }
.tier-num { font-family: var(--font-display); font-size: 2rem; font-weight: 300; opacity: 0.55; letter-spacing: -0.04em; }
.tier-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tier-body h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.02em; }
.tier-body p { color: var(--ink-mute); font-size: 15px; line-height: 1.6; margin: 0; }
.tier-body .svc-list { margin-top: 6px; }
.tiers-foot { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }

/* ── RESIDENTIAL: before/after ── */
.ba { padding: clamp(70px,10vh,110px) 0; background: var(--navy-dark); color: var(--white); }
.ba-head { max-width: 720px; }
.ba-head .eyebrow { color: var(--aqua); } .ba-head .eyebrow::before { background: var(--aqua); }
.ba-head h2 { color: var(--white); margin-top: 22px; }
.ba-head h2 em { color: var(--aqua); }
.ba-head p { color: rgba(255,255,255,0.7); margin-top: 16px; }
.ba-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1000px) { .ba-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
.ba-item { margin: 0; border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }
.ba-item img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; }
.ba-item figcaption { padding: 10px 12px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; }

/* ── RESIDENTIAL: trust strip ── */
.res-trust { padding: clamp(40px,6vh,64px) 0; background: var(--green-soft); }
.res-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 800px) { .res-trust-grid { grid-template-columns: 1fr; } }
.res-trust-item { display: flex; flex-direction: column; gap: 6px; padding-left: 16px; border-left: 3px solid var(--green); }
.res-trust-item strong { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--green-dark); }
.res-trust-item span { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.steps.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .steps.steps-3 { grid-template-columns: 1fr; } }

/* ── ABOUT: message the founder ── */
.founder-note { padding: clamp(70px,10vh,110px) 0; background: var(--off-white); border-top: 1px solid var(--line-soft); }
.founder-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px,6vw,80px); align-items: start; }
@media (max-width: 860px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-copy h2 { margin-top: 22px; }
.founder-copy p { color: var(--ink-mute); margin-top: 18px; }
.founder-small { font-size: 14px; }
.founder-small a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.form-light { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 28px; }
.form-light .field label { color: var(--ink-soft); }
.form-light .field input, .form-light .field textarea { background: var(--off-white); border-color: var(--line); color: var(--ink); }
.form-light .field input::placeholder, .form-light .field textarea::placeholder { color: var(--ink-quiet); }
.form-light .field input:focus, .form-light .field textarea:focus { border-color: var(--navy); background: var(--white); }
.form-light .field-hint { color: var(--ink-quiet); text-align: center; margin-top: 12px; }
.opt { color: rgba(255,255,255,0.45); font-weight: 400; }

/* ── LEGAL / UTILITY PAGES ── */
.legal { padding: clamp(50px,8vh,80px) 0 clamp(70px,10vh,110px); }
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.01em; margin: 34px 0 10px; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; }
.legal-body p { margin: 0 0 14px; }
.legal-body ul { margin: 0 0 14px; padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--navy); text-decoration: underline; }
.legal-meta { font-size: 13px !important; color: var(--ink-quiet) !important; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.legal-links { list-style: none; padding: 0 !important; }
.legal-links li { padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 17px !important; }

/* ---------- Residential room-by-room checklist ---------- */
.checklist { margin-top: 44px; }
.checklist details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.checklist summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--navy); }
.checklist summary::-webkit-details-marker { display: none; }
.checklist summary:hover { background: var(--off-white); }
.checklist summary > span { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--green); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.checklist summary svg { width: 16px; height: 16px; transition: transform 0.25s; }
.checklist details[open] summary svg { transform: rotate(180deg); }
.checklist-scroll { overflow-x: auto; border-top: 1px solid var(--line-soft); }
.checklist table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 14px; }
.checklist th, .checklist td { padding: 10px 16px; border-bottom: 1px solid var(--line-soft); text-align: center; }
.checklist th:first-child, .checklist td:first-child { text-align: left; color: var(--ink-soft); }
.checklist thead th { background: var(--off-white); font-family: var(--font-body); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-mute); padding-top: 14px; padding-bottom: 14px; }
.checklist thead th a { color: var(--ink-mute); text-decoration: underline dotted; }
.checklist th.room { text-align: left; background: var(--navy-soft); color: var(--navy); font-family: var(--font-display); font-size: 1rem; font-weight: 600; letter-spacing: 0; text-transform: none; padding-top: 14px; padding-bottom: 14px; }
.checklist td .yes { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 11px; font-weight: 800; }
.checklist td .no { color: var(--line); }
.checklist-note { padding: 14px 26px 20px; font-size: 13px; line-height: 1.6; color: var(--ink-quiet); margin: 0; }
@media (max-width: 640px) { .checklist summary { font-size: 1rem; padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 8px; } }

/* ---------- Contact: alternate phone line under the final CTA ---------- */
.final .final-alt { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,0.7); }
.final .final-alt a { color: var(--white); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); }

/* ---------- Partner With Us (careers.html) ---------- */
.partner { padding: clamp(64px,9vh,100px) 0; }
.partner-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px,5vw,64px); align-items: start; }
.partner-copy h2 { margin-top: 22px; }
.partner-copy p { color: var(--ink-mute); margin-top: 18px; line-height: 1.7; }
.partner-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: var(--shadow-md); }
.partner-card h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.partner-card > p { color: var(--ink-mute); font-size: 15px; line-height: 1.6; margin: 10px 0 0; }
.partner-card .svc-list { margin-top: 18px; }
.partner-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.partner-ctas .btn { justify-content: center; }
.partner-fine { font-size: 12.5px; color: var(--ink-quiet); line-height: 1.6; margin: 16px 0 0; }
.partner-langs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.partner-langs span { font-size: 12.5px; font-weight: 600; color: var(--navy); background: var(--navy-soft); border-radius: 999px; padding: 5px 11px; }
.partner-eeo { padding: 0 0 clamp(56px,8vh,88px); }
.partner-eeo p { max-width: 820px; margin: 0 auto; text-align: center; font-size: 13.5px; line-height: 1.7; color: var(--ink-quiet); }
@media (max-width: 900px) { .partner-grid { grid-template-columns: 1fr; } }
