:root {
    --green: #00A651;
    --green-dark: #087536;
    --orange: #F58220;
    --ink: #2B2B2B;
    --muted: #66706a;
    --soft: #F8F9FA;
    --white: #fff;
    --line: #e4e8e5;
    --shadow: 0 18px 50px rgba(25, 45, 32, .10);
    --radius: 22px;
    --container: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, Arial, sans-serif;
    color: var(--ink);
    line-height: 1.6;
    background: #fff
}

img {
    max-width: 100%;
    display: block
}

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

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

.skip-link {
    position: absolute;
    left: -9999px
}

.skip-link:focus {
    left: 20px;
    top: 20px;
    z-index: 999;
    background: #fff;
    padding: 10px
}

.topbar {
    background: #223027;
    color: #fff;
    font-size: 13px
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.topbar-inner>div {
    display: flex;
    align-items: center;
    gap: 10px
}

.topbar a:hover {
    color: #bceecf
}

.social-mini {
    color: #7ed69f;
    letter-spacing: 4px
}


.main-logo {
     height: 65px;
    display: block;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.header-inner {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px
}

.brand {
    width: 176px;
    height: 62px;
    overflow: hidden;
    display: flex;
    align-items: center
}

/* .brand img {
   height: 120px;
    object-fit: cover;
    object-position: center
} */

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 14px;
    font-weight: 700
}

.main-nav a {
    padding: 30px 0;
    position: relative
}

.main-nav a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 21px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: .25s
}

.main-nav a:hover:after,
.main-nav .active:after {
    width: 100%
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid transparent;
    transition: .25s;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .13)
}

.btn-orange {
    background: var(--orange);
    color: #fff
}

.btn-green {
    background: var(--green);
    color: #fff
}

.btn-white {
    background: #fff;
    color: var(--ink)
}

.header-cta {
    padding: 12px 17px
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 28px
}

.hero {
    min-height: 680px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: center
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.hero-bg {
    object-fit: cover;
    z-index: -2
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(7, 25, 15, .9) 0%, rgba(7, 25, 15, .75) 42%, rgba(7, 25, 15, .24) 100%);
    z-index: -1
}

.hero-content {
    color: #fff;
    max-width: 1110px;
    padding: 85px 0
}

.eyebrow {
    display: inline-block;
    color: var(--orange);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .14em;
    margin-bottom: 12px
}

.eyebrow.light {
    color: #b6f2c7
}

.hero h1,
.page-hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.04;
    letter-spacing: -.045em;
    margin: 0 0 22px;
    font-weight: 900
}

.hero h1 em,
.page-hero h1 em,
h2 em {
    font-style: normal;
    color: var(--orange)
}

.hero p {
    font-size: 18px;
    max-width: 660px;
    color: #e4ece7;
    margin-bottom: 30px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-proof {
    margin-top: 30px;
    color: #d9e5de;
    font-size: 14px
}

.hero-proof span,
.stars {
    color: #ffb238;
    letter-spacing: 2px;
    margin-right: 8px
}

.trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04)
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.trust-grid article {
    padding: 25px 28px;
    display: flex;
    gap: 15px;
    border-right: 1px solid var(--line);
    align-items: center
}

.trust-grid article:last-child {
    border: 0
}

.trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e8f7ee;
    color: var(--green);
    font-weight: 900;
    font-size: 20px
}

.trust-grid strong,
.trust-grid span {
    display: block
}

.trust-grid span {
    font-size: 13px;
    color: var(--muted)
}

.section {
    padding: 105px 0
}

.section-soft {
    background: var(--soft)
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.image-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.image-card img {
    width: 100%;
    min-height: 420px;
    object-fit: cover
}

.image-chip {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 9px;
    font-weight: 800;
    color: var(--green)
}

.content-block h2,
.section-heading h2,
.quote-band h2,
.cert-panel h2,
.contact-info h2,
.contact-form h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -.035em;
    margin: 0 0 20px
}

.content-block p {
    color: var(--muted);
    font-size: 17px
}

.mini-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 26px 0;
    color: var(--ink);
    font-weight: 700
}

.text-link {
    font-weight: 900;
    color: var(--green)
}

.section-heading {
    margin-bottom: 45px
}

.section-heading.center {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto
}

.section-heading.between {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px
}

.section-heading p {
    color: var(--muted)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    transition: .3s;
    display: flex;
    flex-direction: column
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: #cfe9d8
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #eaf8ef;
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 25px;
    margin-bottom: 22px
}

.service-card h3 {
    font-size: 19px;
    margin: 0 0 8px
}

.service-card p {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 18px
}

.service-card a {
    font-size: 13px;
    font-weight: 900;
    color: var(--green);
    margin-top: auto
}

.center {
    text-align: center
}

.mt-32 {
    margin-top: 32px
}

.why-section {
    background: #fff;
    color: #fff
}

.why-section .eyebrow {
    color: #f6a75f
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.why-grid article {
    background-color: #27362D;
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 30px;
    border-radius: 16px
}

.section-soft .why-grid article {
    background: #fff;
    border-color: var(--line)
}

.why-grid span {
    font-size: 13px;
    color: var(--orange);
    font-weight: 900
}

.why-grid h3 {
    font-size: 20px;
    margin: 10px 0
}

.why-grid p {
    font-size: 14px;
    margin: 0;
    color: #cbd5ce
}

.section-soft .why-grid p {
    color: var(--muted)
}

.quote-band {
    background: linear-gradient(135deg, #063d20, #0b7238);
    color: #fff;
    padding: 75px 0
}

.quote-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center
}

.quote-band h2 {
    font-size: clamp(35px, 4vw, 58px)
}

.quote-band h2 em {
    color: #f9a15b
}

.quote-band p {
    color: #cfe4d7
}

.quote-phone a {
    font-weight: 900;
    color: #fff;
    font-size: 20px
}

.quote-form,
.contact-form {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    color: var(--ink);
    box-shadow: var(--shadow)
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.contact-form label input,
.contact-form label select,
.contact-form label textarea {
    width: 100%;
    border: 1px solid #dce3de;
    background: #fff;
    border-radius: 7px;
    padding: 13px;
    font: inherit;
    outline: none
}

.form-grid input:focus,
.form-grid select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 166, 81, .1)
}

.full {
    grid-column: 1/-1
}

.btn-block {
    width: 100%;
    margin-top: 14px
}

.quote-form small {
    display: block;
    color: #78817b;
    text-align: center;
    margin-top: 12px;
    font-size: 11px
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.project-grid article {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #000
}

.project-grid img {
    height: 360px;
    width: 100%;
    object-fit: cover;
    transition: .4s
}

.project-grid article:hover img {
    transform: scale(1.05)
}

.project-grid article div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 80px 24px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .85));
    color: #fff
}

.project-grid span {
    color: #b7f1c8;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase
}

.project-grid h3 {
    margin: 5px 0 0;
    font-size: 21px
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.testimonial-grid article {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid var(--line)
}

.testimonial-grid p {
    font-size: 17px;
    line-height: 1.7
}

.testimonial-grid strong,
.testimonial-grid span {
    display: block
}

.testimonial-grid span {
    color: var(--muted);
    font-size: 13px
}

.area-grid {
    align-items: stretch
}

.map-card {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 380px;
    background: #e6eee9
}

.map-placeholder {
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 30% 30%, #fff 0 1%, transparent 1.2%), radial-gradient(circle at 70% 40%, #fff 0 1%, transparent 1.2%), linear-gradient(135deg, #d5e7d7, #8fc49b);
    position: relative
}

.map-placeholder:before,
.map-placeholder:after {
    content: '';
    position: absolute;
    border: 2px dashed rgba(0, 120, 55, .35);
    border-radius: 48%;
    width: 65%;
    height: 36%;
    transform: rotate(-20deg)
}

.map-placeholder:after {
    transform: rotate(35deg);
    width: 46%;
    height: 70%
}

.map-placeholder span,
.map-placeholder small {
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 800;
    color: #357244
}

.map-placeholder strong {
    position: relative;
    z-index: 1;
    font-size: clamp(34px, 5vw, 65px);
    letter-spacing: .06em;
    color: var(--green-dark);
    line-height: 1.1
}

.zip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 25px 0
}

.zip-list span {
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700
}

.narrow {
    max-width: 850px
}

.accordion details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 20px;
    margin-bottom: 10px
}

.accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 0;
    font-weight: 800;
    display: flex;
    justify-content: space-between
}

.accordion summary::-webkit-details-marker {
    display: none
}

.accordion p {
    color: var(--muted);
    padding-bottom: 20px;
    margin: 0
}

.site-footer {
    background: #202923;
    color: #cbd2cd;
    padding-top: 70px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 55px
}

.footer-logo {
   height: 128px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 18px
}

.site-footer h3 {
    color: #fff;
    font-size: 16px;
    margin: 10px 0 18px
}

.site-footer a {
    display: block;
    margin: 8px 0;
    font-size: 14px
}

.site-footer a:hover {
    color: #fff
}

.footer-social {
    display: flex;
    gap: 8px
}

.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .2);
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin: 0;
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;
    font-size: 13px
}

.footer-bottom a {
    display: inline;
    margin-left: 10px;
    color: #fff
}

.page-hero {
    padding: 120px 0;
    background: linear-gradient(120deg, #eff7f0, #fff 55%, #f7eee5)
}

.page-hero .container {
    max-width: 900px;
    margin-left: max(20px, calc((100% - var(--container))/2))
}

.page-hero h1 {
    font-size: clamp(45px, 6vw, 74px);
    color: #26332b
}

.page-hero p {
    color: var(--muted);
    font-size: 18px
}

.services-page {
    grid-template-columns: repeat(3, 1fr)
}

.compact {
    padding: 55px 0
}

.cert-panel {
    padding: 45px;
    border-radius: 20px;
    background: #edf8f0
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px
}

.cert-badges div {
    background: #fff;
    padding: 11px 14px;
    border-radius: 8px;
    font-weight: 800;
    color: var(--green-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06)
}

.filter-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px
}

.filter-row button {
    border: 1px solid var(--line);
    background: #fff;
    padding: 10px 17px;
    border-radius: 99px;
    font-weight: 800;
    cursor: pointer
}

.filter-row button.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.gallery-grid article {
    position: relative;
    overflow: hidden;
    border-radius: 16px
}

.gallery-grid img {
    width: 100%;
    height: 310px;
    object-fit: cover
}

.gallery-grid div {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: #fff;
    padding: 9px 13px;
    border-radius: 7px;
    font-weight: 800;
    font-size: 13px
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 55px
}

.contact-line {
    padding: 16px 0;
    border-bottom: 1px solid var(--line)
}

.contact-line strong,
.contact-line a,
.contact-line span {
    display: block
}

.contact-line strong {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em
}

.contact-line a {
    font-weight: 800
}

.contact-map {
    margin-top: 30px;
    min-height: 300px
}

.contact-map .map-placeholder {
    min-height: 300px
}

.contact-form label {
    font-size: 12px;
    font-weight: 800;
    color: #56615a
}

.contact-form label input,
.contact-form label select,
.contact-form label textarea {
    margin-top: 6px;
    font-weight: 400;
    color: var(--ink)
}

@media(max-width:980px) {
    .main-nav {
        gap: 14px
    }

    .header-cta {
        display: none
    }

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

    .split-grid,
    .quote-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

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

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

    .project-grid {
        grid-template-columns: 1fr 1fr
    }

    .project-grid article:last-child {
        grid-column: 1/-1
    }

    .trust-grid article {
        padding: 20px 14px
    }

    .brand {
        width: 150px
    }

    .brand img {
        width: 150px
    }
}

@media(max-width:720px) {
    .container {
        width: min(calc(100% - 28px), var(--container))
    }

    .topbar {
        display: none
    }

    .header-inner {
        height: 70px
    }

    .brand {
        width: 140px;
        height: 56px
    }

    .brand img {
        width: 140px
    }

    .menu-toggle {
        display: block
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 12px 20px 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
        flex-direction: column;
        align-items: stretch
    }

    .main-nav.open {
        display: flex
    }

    .main-nav a {
        padding: 12px 0
    }

    .main-nav a:after {
        bottom: 6px
    }

    .hero {
        min-height: 620px
    }

    .hero-content {
        padding: 65px 0
    }

    .hero h1 {
        font-size: 46px
    }

    .hero p {
        font-size: 16px
    }

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

    .trust-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .section {
        padding: 75px 0
    }

    .mini-points {
        grid-template-columns: 1fr
    }

    .services-grid,
    .services-page,
    .testimonial-grid,
    .gallery-grid {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .section-heading.between {
        align-items: start;
        flex-direction: column
    }

    .project-grid {
        grid-template-columns: 1fr
    }

    .project-grid article:last-child {
        grid-column: auto
    }

    .project-grid img {
        height: 300px
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .full {
        grid-column: auto
    }

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

    .page-hero {
        padding: 85px 0
    }

    .page-hero .container {
        margin: auto
    }

    .contact-form {
        padding: 22px
    }

    .quote-band {
        padding: 55px 0
    }

    .image-card img {
        min-height: 320px
    }
}

/* Working PHP form feedback */
.form-alert {
    margin: 14px 0 18px;
    padding: 13px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.45
}

.form-alert-success {
    background: rgba(0, 166, 81, .12);
    border: 1px solid rgba(0, 166, 81, .35);
    color: #08733b
}

.form-alert-error {
    background: rgba(245, 130, 32, .12);
    border: 1px solid rgba(245, 130, 32, .35);
    color: #9b4b00
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important
}

/* Premium refinement */
.hero-photo {
    background: #06361f
}

.hero-photo .hero-bg {
    filter: brightness(.72) saturate(1.1)
}

.hero h1 {
    max-width: 820px;
    text-shadow: 0 3px 22px rgba(0, 0, 0, .25)
}

.photo-frame {
    background: #e8efe8;
    padding: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .13)
}

.photo-frame img {
    min-height: 430px;
    object-fit: cover
}

.premium-services {
    gap: 22px
}

.premium-services .service-card {
    min-height: 260px;
    padding: 26px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(31, 57, 40, .05);
    position: relative;
    overflow: hidden
}

.premium-services .service-card:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--orange);
    transition: .3s
}

.premium-services .service-card:hover:before {
    height: 100%
}

.premium-services .service-card:hover {
    background: linear-gradient(145deg, #fff, #f4fbf6);
    transform: translateY(-9px)
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.service-number {
    font-size: 11px;
    letter-spacing: .14em;
    color: #9aa49d;
    font-weight: 900
}

.premium-services .service-icon {
    margin: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px
}

.premium-services .service-card h3 {
    font-size: 20px
}

.premium-services .service-card a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    margin-top: auto
}

.premium-services .service-card a span {
    color: var(--orange);
    font-size: 20px
}

.real-gallery img {
    image-rendering: auto
}

.real-gallery article {
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .09)
}

.quote-form .form-alert {
    margin-bottom: 15px
}

.form-alert {
    padding: 12px 14px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700
}

.form-alert-success {
    background: #e8f7ee;
    color: #096d35
}

.form-alert-error {
    background: #fff0ed;
    color: #b63a19
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.site-footer {
    margin-top: 0
}

.footer-cta {
    margin-top: 12px !important;
    width: max-content
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center
}

.footer-bottom span:last-child {
    white-space: nowrap
}

@media(max-width:720px) {
    .premium-services .service-card {
        min-height: 225px
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: flex-start
    }

    .photo-frame img {
        min-height: 300px
    }

    .hero h1 {
        font-size: 40px
    }
}











.btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid transparent;
    transition: .25s;
    cursor: pointer;
}



.eyebrow h2 {
    color: #f58220 !important;
}