:root {
    --navy: #123b5d;
    --navy-dark: #08293f;
    --blue: #0b6fa4;
    --blue-light: #eaf5fb;
    --green: #20a64a;
    --orange: #f58220;

    --white: #ffffff;
    --off-white: #f6f8f9;

    --text: #1d2730;
    --muted: #64717d;
    --border: #dee6ea;

    --container: 1280px;

    --radius: 16px;
    --radius-lg: 24px;

    --shadow-small:
        0 10px 28px rgba(8,41,63,.08);

    --shadow:
        0 22px 55px rgba(8,41,63,.13);
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    background: var(--white);

    color: var(--text);

    font-family: "Inter", sans-serif;

    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}


.section {
    padding: 104px 0;
}


h1,
h2,
h3,
h4 {
    margin-top: 0;

    font-family: "Manrope", sans-serif;

    line-height: 1.1;
}


h1 {
    font-size: clamp(43px, 5.3vw, 76px);
    letter-spacing: -3px;
}


h2 {
    font-size: clamp(34px, 4vw, 53px);
    letter-spacing: -2px;
}


h3 {
    font-size: 21px;
    letter-spacing: -.6px;
}


p {
    color: var(--muted);
}


.section-label,
.eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.section-label::before,
.eyebrow::before {
    content: "";

    width: 28px;
    height: 3px;

    background: var(--orange);

    border-radius: 20px;
}


.section-heading {
    max-width: 760px;

    margin: 0 auto 52px;

    text-align: center;
}


.section-heading h2 {
    margin-bottom: 17px;
}


.section-heading p {
    margin: 0;

    font-size: 17px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 13px 20px;

    border: 1px solid transparent;
    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.btn:hover {
    transform: translateY(-2px);
}


.btn-large {
    padding: 16px 24px;
}


.btn-primary {
    background: var(--orange);
    color: white;

    box-shadow:
        0 10px 25px rgba(245,130,32,.23);
}


.btn-dark {
    background: var(--navy);
    color: white;
}


.btn-white {
    background: white;
    color: var(--navy);
}


.btn-outline {
    color: white;

    background:
        rgba(255,255,255,.06);

    border-color:
        rgba(255,255,255,.42);
}


/* HEADER */

.site-header {
    height: 86px;

    position: sticky;
    top: 0;

    z-index: 1000;

    background:
        rgba(255,255,255,.97);

    border-bottom:
        1px solid rgba(8,41,63,.06);

    transition:
        box-shadow .2s ease;
}


.site-header.scrolled {
    box-shadow: var(--shadow-small);
}


.header-inner {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 32px;
}


.brand {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}


.brand-symbol {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--green)
        );

    color: white;

    font-family: "Manrope", sans-serif;

    font-size: 13px;
    font-weight: 800;
}


.brand-name {
    display: flex;
    flex-direction: column;

    line-height: 1.12;
}


.brand-name strong {
    font-family: "Manrope", sans-serif;

    font-size: 17px;
}


.brand-name span {
    margin-top: 4px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


.desktop-nav {
    display: flex;
    align-items: center;

    gap: 23px;

    margin-left: auto;
}


.desktop-nav a {
    color: #40505b;

    font-size: 13px;
    font-weight: 650;

    transition: color .2s;
}


.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--blue);
}


.header-actions {
    display: flex;
    align-items: center;

    gap: 15px;
}


.phone-link {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--navy);

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}


.phone-icon {
    color: var(--green);
}


.desktop-estimate {
    white-space: nowrap;
}


.menu-toggle {
    width: 43px;
    height: 43px;

    display: none;

    padding: 0;

    background: var(--off-white);

    border: 0;
    border-radius: 9px;

    cursor: pointer;
}


.menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    background: var(--navy);
}


.mobile-menu {
    display: none;

    position: absolute;

    top: 86px;
    left: 0;
    right: 0;

    padding: 18px 24px 28px;

    background: white;

    border-top: 1px solid var(--border);

    box-shadow: var(--shadow);
}


.mobile-menu.open {
    display: flex;
    flex-direction: column;
}


.mobile-menu a {
    padding: 12px 0;

    border-bottom: 1px solid var(--border);

    font-weight: 700;
}


.mobile-call {
    color: var(--blue);
}


/* HERO */

.hero {
    min-height: 735px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #07273c 0%,
            #0b4264 56%,
            #08768d 100%
        );
}


.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(5px);
}


.hero-glow-one {
    width: 500px;
    height: 500px;

    top: -170px;
    right: 5%;

    background:
        rgba(63,197,218,.14);
}


.hero-glow-two {
    width: 420px;
    height: 420px;

    right: 18%;
    bottom: -260px;

    background:
        rgba(32,166,74,.18);
}


.hero-container {
    position: relative;

    z-index: 5;
}


.hero-content {
    max-width: 800px;
}


.hero .eyebrow {
    color: #cae8f5;
}


.hero h1 {
    max-width: 800px;

    margin-bottom: 25px;

    color: white;
}


.hero h1 span {
    display: block;

    color: #99d8ef;
}


.hero-content > p {
    max-width: 690px;

    margin-bottom: 33px;

    color: rgba(255,255,255,.81);

    font-size: 18px;
}


.hero-buttons {
    display: flex;

    gap: 12px;

    margin-bottom: 32px;
}


.hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 13px 28px;

    color: rgba(255,255,255,.9);

    font-size: 13px;
    font-weight: 600;
}


.check {
    margin-right: 5px;

    color: #70e38d;
}


/* PROPERTY OUTLINE */

.property-outline {
    width: 390px;
    height: 270px;

    position: absolute;

    right: 8%;
    bottom: 120px;

    opacity: .15;
}


.house {
    width: 330px;
    height: 190px;

    position: absolute;

    bottom: 0;
    left: 30px;

    border:
        2px solid white;
}


.roof {
    width: 235px;
    height: 235px;

    position: absolute;

    top: -65px;
    left: 76px;

    transform: rotate(45deg);

    border-top:
        2px solid white;

    border-left:
        2px solid white;
}


.door {
    width: 75px;
    height: 120px;

    position: absolute;

    bottom: 0;
    left: 157px;

    border:
        2px solid white;
}


/* TRUST */

.trust-bar {
    background: white;

    border-bottom:
        1px solid var(--border);

    box-shadow:
        0 12px 32px rgba(8,41,63,.05);
}


.trust-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);
}


.trust-item {
    min-height: 112px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-right:
        1px solid var(--border);
}


.trust-item:last-child {
    border-right: 0;
}


.trust-item strong {
    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: 19px;
}


.trust-item span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;
}


/* SERVICES */

.services-section {
    background: var(--off-white);
}


.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;
}


.service-card {
    min-height: 310px;

    display: flex;
    flex-direction: column;

    padding: 30px;

    background: white;

    border:
        1px solid #e3e9ec;

    border-radius: var(--radius);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}


.service-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(11,111,164,.25);

    box-shadow: var(--shadow);
}


.service-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    color: var(--blue);

    background: var(--blue-light);

    border-radius: 13px;
}


.service-icon svg {
    width: 26px;
    height: 26px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.service-card h3 {
    margin-bottom: 11px;
}


.service-card p {
    margin: 0 0 19px;

    font-size: 14px;
}


.service-card > a {
    margin-top: auto;

    color: var(--blue);

    font-size: 13px;
    font-weight: 800;
}


/* AUDIENCE */

.audience-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 24px;
}


.audience-card {
    min-height: 480px;

    position: relative;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    padding: 42px;

    border-radius: var(--radius-lg);
}


.audience-card.residential {
    background:
        linear-gradient(
            145deg,
            #0c587b,
            #0c324a
        );
}


.audience-card.commercial {
    background:
        linear-gradient(
            145deg,
            #344957,
            #102a3b
        );
}


.audience-pattern {
    width: 370px;
    height: 370px;

    position: absolute;

    right: -100px;
    top: -80px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 50%;
}


.audience-pattern::after {
    content: "";

    width: 250px;
    height: 250px;

    position: absolute;

    top: 59px;
    left: 59px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 50%;
}


.audience-content {
    max-width: 460px;

    position: relative;

    z-index: 3;
}


.audience-label {
    display: inline-flex;

    margin-bottom: 17px;

    padding: 6px 10px;

    color: white;

    background:
        rgba(255,255,255,.12);

    border:
        1px solid rgba(255,255,255,.19);

    border-radius: 100px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


.audience-card h3 {
    margin-bottom: 16px;

    color: white;

    font-size: clamp(30px,3.4vw,43px);
}


.audience-card p {
    color: rgba(255,255,255,.73);
}


.audience-card a {
    color: white;

    font-size: 13px;
    font-weight: 800;
}


/* ABOUT */

.about-section {
    background: var(--off-white);
}


.about-grid {
    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    gap: 80px;

    align-items: center;
}


.about-visual {
    min-height: 520px;

    position: relative;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 25% 20%,
            #d5edf6,
            transparent 43%
        ),
        linear-gradient(
            145deg,
            #e4eff3,
            #d7e5ea
        );

    border-radius: var(--radius-lg);
}


.visual-building {
    width: 310px;
    height: 275px;

    position: relative;
}


.visual-body {
    width: 290px;
    height: 185px;

    position: absolute;

    left: 10px;
    bottom: 0;

    background: white;

    border-radius: 5px;

    box-shadow: var(--shadow);
}


.visual-roof {
    width: 215px;
    height: 215px;

    position: absolute;

    left: 47px;
    top: -38px;

    transform: rotate(45deg);

    background: var(--navy);

    border-radius: 4px;
}


.visual-door {
    width: 58px;
    height: 100px;

    position: absolute;

    left: 126px;
    bottom: 0;

    background: #d8e4e9;
}


.visual-window {
    width: 52px;
    height: 52px;

    position: absolute;

    bottom: 76px;

    z-index: 3;

    background: #b9dce8;

    border:
        6px solid #ecf4f6;
}


.visual-window.one {
    left: 42px;
}


.visual-window.two {
    right: 42px;
}


.experience-card {
    width: 175px;

    position: absolute;

    right: 24px;
    bottom: 30px;

    padding: 24px;

    color: white;

    background: var(--orange);

    border-radius: 15px;

    box-shadow: var(--shadow);
}


.experience-card strong {
    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 37px;

    line-height: 1;
}


.experience-card span {
    display: block;

    margin-top: 8px;

    font-size: 11px;
}


.about-copy h2 {
    margin-bottom: 22px;
}


.about-lead {
    margin-bottom: 28px;

    font-size: 17px;
}


.feature-checks {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 13px 20px;

    margin-bottom: 32px;

    color: #465661;

    font-size: 14px;
    font-weight: 600;
}


.feature-checks span {
    margin-right: 7px;

    color: var(--green);
}


/* PROCESS */

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 22px;
}


.process-item {
    text-align: center;

    padding: 0 18px;
}


.process-number {
    width: 78px;
    height: 78px;

    display: grid;
    place-items: center;

    margin: 0 auto 24px;

    color: var(--blue);

    background: white;

    border:
        2px solid #d6e3e9;

    border-radius: 50%;

    font-family: "Manrope", sans-serif;

    font-weight: 800;
}


.process-item h3 {
    font-size: 18px;
}


.process-item p {
    font-size: 13px;
}


/* PROJECTS */

.projects-section {
    background: var(--off-white);
}


.projects-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 40px;
}


.projects-heading h2 {
    margin-bottom: 0;
}


.projects-heading > a {
    color: var(--blue);

    font-size: 13px;
    font-weight: 800;
}


.projects-grid {
    display: grid;

    grid-template-columns:
        1.2fr 1fr 1fr;

    gap: 18px;
}


.project-card {
    min-height: 390px;

    display: flex;
    align-items: flex-end;

    padding: 25px;

    border-radius: var(--radius);

    overflow: hidden;
}


.project-a {
    background:
        linear-gradient(
            145deg,
            #b7cad2,
            #e2ebee
        );
}


.project-b {
    background:
        linear-gradient(
            145deg,
            #c1d5ca,
            #e5ede8
        );
}


.project-c {
    background:
        linear-gradient(
            145deg,
            #bfced8,
            #e1e8ec
        );
}


.project-card span {
    padding: 8px 11px;

    background: white;

    border-radius: 7px;

    box-shadow: var(--shadow-small);

    font-size: 11px;
    font-weight: 800;
}


/* MAINTENANCE */

.maintenance {
    position: relative;

    overflow: hidden;

    padding: 110px 0;

    color: white;

    background:
        linear-gradient(
            120deg,
            #082b42,
            #0d5576
        );
}


.maintenance-shape {
    width: 580px;
    height: 580px;

    position: absolute;

    right: -180px;
    top: -160px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 50%;
}


.maintenance-shape::after {
    content: "";

    width: 390px;
    height: 390px;

    position: absolute;

    left: 94px;
    top: 94px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 50%;
}


.maintenance-content {
    max-width: 700px;

    position: relative;

    z-index: 2;
}


.light-label {
    color: #c7e7f4;
}


.maintenance h2 {
    color: white;
}


.maintenance p {
    max-width: 650px;

    color: rgba(255,255,255,.75);

    font-size: 17px;
}


.maintenance-options {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin: 25px 0 32px;
}


.maintenance-options span {
    padding: 8px 11px;

    border:
        1px solid rgba(255,255,255,.17);

    border-radius: 7px;

    font-size: 11px;
    font-weight: 700;
}


/* REVIEWS */

.reviews-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;
}


.review-card {
    padding: 31px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-small);
}


.stars {
    margin-bottom: 17px;

    color: #f3a41d;

    letter-spacing: 2px;
}


.review-card p {
    color: #485762;
}


.review-card strong,
.review-card span {
    display: block;
}


.review-card strong {
    margin-top: 20px;
}


.review-card span {
    color: var(--muted);

    font-size: 11px;
}


/* FINAL CTA */

.final-cta {
    padding: 76px 0;

    color: white;

    background: var(--orange);
}


.final-cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


.small-label {
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.final-cta h2 {
    margin: 6px 0 8px;

    color: white;
}


.final-cta p {
    margin: 0;

    color: rgba(255,255,255,.84);
}


.final-actions {
    display: flex;
    align-items: center;

    gap: 20px;

    flex-shrink: 0;
}


.final-phone {
    font-family: "Manrope", sans-serif;

    font-size: 19px;
    font-weight: 800;
}


/* FOOTER */

.footer {
    padding: 72px 0 25px;

    color: rgba(255,255,255,.68);

    background: #071f30;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.6fr 1fr 1fr 1.2fr;

    gap: 45px;
}


.footer-brand .brand-name strong {
    color: white;
}


.footer-brand .brand-name span {
    color: rgba(255,255,255,.48);
}


.footer-company p {
    max-width: 330px;

    color: rgba(255,255,255,.49);

    font-size: 12px;
}


.footer-column {
    display: flex;
    flex-direction: column;

    gap: 9px;
}


.footer-column h4 {
    margin-bottom: 8px;

    color: white;

    font-size: 14px;
}


.footer-column a,
.footer-column span {
    font-size: 12px;
}


.footer-column a:hover {
    color: white;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 52px;
    padding-top: 21px;

    border-top:
        1px solid rgba(255,255,255,.1);

    color: rgba(255,255,255,.39);

    font-size: 10px;
}


/* TABLET */

@media (max-width: 1120px) {

    .desktop-nav {
        display: none;
    }


    .header-actions {
        margin-left: auto;
    }


    .menu-toggle {
        display: block;
    }


    .services-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .process-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 45px 20px;
    }

}


/* MOBILE */

@media (max-width: 760px) {

    .container {
        width:
            min(calc(100% - 36px), var(--container));
    }


    .section {
        padding: 72px 0;
    }


    h1 {
        letter-spacing: -2px;
    }


    h2 {
        letter-spacing: -1.2px;
    }


    .site-header {
        height: 76px;
    }


    .phone-text,
    .desktop-estimate {
        display: none;
    }


    .mobile-menu {
        top: 76px;
    }


    .hero {
        min-height: 700px;
    }


    .property-outline {
        right: -180px;

        opacity: .09;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    .hero-trust {
        flex-direction: column;

        gap: 8px;
    }


    .trust-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .trust-item:nth-child(2) {
        border-right: 0;
    }


    .trust-item:nth-child(-n+2) {
        border-bottom:
            1px solid var(--border);
    }


    .services-grid,
    .audience-grid,
    .about-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }


    .audience-card {
        min-height: 390px;

        padding: 28px;
    }


    .about-grid {
        gap: 42px;
    }


    .about-visual {
        min-height: 410px;
    }


    .feature-checks {
        grid-template-columns: 1fr;
    }


    .process-grid {
        grid-template-columns: 1fr;
    }


    .projects-heading {
        flex-direction: column;

        align-items: flex-start;
    }


    .projects-grid {
        grid-template-columns: 1fr;
    }


    .project-card {
        min-height: 280px;
    }


    .final-cta-grid {
        flex-direction: column;

        align-items: flex-start;
    }


    .final-actions {
        flex-direction: column;

        align-items: flex-start;
    }


    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .footer-company {
        grid-column: 1 / -1;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 7px;
    }

}


@media (max-width: 480px) {

    .services-grid,
    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }


    .trust-item {
        border-right: 0;

        border-bottom:
            1px solid var(--border);
    }


    .footer-company {
        grid-column: auto;
    }

}
