/*
====================================================================
F.M. STEWART GARDENING & LANDSCAPING
MAIN STYLESHEET — DREAMWEAVER-FRIENDLY FORMAT

Formatting only:
- One declaration per line
- Clear indentation
- Existing selectors, values, responsive rules and functionality retained
- Local image paths retained in assets/images/
====================================================================
*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600;700;800&family=Playfair+Display:wght@600;700&display=swap');
:root {
    --green:#71966b;
    --dark:#25372b;
    --soft:#eef4ec;
    --line:#dce7d9;
    --text:#29342d;
    --shadow:0 16px 45px rgba(31,55,35,.13)
}

* {
    box-sizing:border-box
}

html {
    scroll-behavior:smooth
}

body {
    margin:0;
    font-family:'DM Sans',Arial,sans-serif;
    color:var(--text);
    line-height:1.6
}

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

img {
    max-width:100%
}

.site-header {
    height:94px;
    display:flex;
    align-items:center;
    padding:0 4vw;
    gap:25px;
    background:rgba(255,255,255,.97);
    position:sticky;
    top:0;
    z-index:50;
    border-bottom:1px solid var(--line)
}

.brand {
    display:flex;
    align-items:center;
    margin-right:auto
}

.brand img {
    width:74px;
    height:74px;
    object-fit:contain;
    border-radius:50%
}

.brand span {
    display:flex;
    flex-direction:column;
    line-height:1.1;
    margin-left:10px
}

.brand b {
    font-size:19px
}

.brand small {
    font-size:11px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--green)
}

.mainnav {
    display:flex;
    gap:22px;
    align-items:center;
    font-size:14px;
    font-weight:800
}

.mainnav>a, .nav-drop>button {
    padding:35px 0 30px;
    background:none;
    border:0;
    font:inherit;
    cursor:pointer
}

.active {
    color:var(--green)
}

.nav-drop {
    position:relative
}

.dropdown {
    position:absolute;
    top:76px;
    left:-30px;
    width:620px;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#fff;
    padding:18px;
    border-radius:0 0 14px 14px;
    box-shadow:var(--shadow);
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:.2s
}

.nav-drop:hover .dropdown, .nav-drop.open .dropdown {
    opacity:1;
    visibility:visible;
    transform:none
}

.dropdown a {
    padding:8px 12px;
    border-radius:7px
}

.dropdown a:hover {
    background:var(--soft);
    color:var(--green)
}

.header-actions {
    display:flex;
    align-items:center;
    gap:12px
}

.phone {
    font-weight:800
}

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 20px;
    background:var(--green);
    color:#fff;
    border:0;
    border-radius:6px;
    font-weight:800;
    cursor:pointer
}

.ghost {
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.7)
}

.outline {
    background:#fff;
    color:var(--green);
    border:2px solid var(--green)
}

.menu-toggle {
    display:none
}

.hero {
    min-height:670px;
    position:relative;
    display:grid;
    grid-template-columns:1.15fr .85fr;
    align-items:center;
    padding:70px 8vw;
    background:url('assets/images/home-hero.png') center/cover
}

.hero-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(30,55,35,.93),rgba(46,76,49,.72) 48%,rgba(46,76,49,.12))
}

.hero-copy {
    position:relative;
    color:#fff;
    z-index:2;
    max-width:720px
}

.eyebrow {
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:900;
    color:#8aac82
}

.hero-copy .eyebrow {
    color:#d9ecd4
}

.hero h1 {
    font:700 clamp(48px,6vw,84px)/1.02 'Playfair Display',serif;
    margin:14px 0 24px
}

.hero h1 span {
    color:#c8dfc2
}

.hero-copy>p:not(.eyebrow) {
    font-size:20px
}

.hero-buttons {
    display:flex;
    gap:12px;
    margin:30px 0
}

.trust {
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    font-weight:700;
    font-size:13px
}

.hero-badge {
    position:relative;
    z-index:2;
    justify-self:end
}

.hero-badge img {
    width:min(410px,38vw);
    border-radius:50%;
    filter:drop-shadow(0 20px 30px rgba(0,0,0,.28))
}

.section {
    padding:82px 7vw
}

.intro {
    text-align:center;
    max-width:900px;
    margin:auto;
    padding-bottom:25px
}

.intro h2, .section h2 {
    font:700 clamp(34px,4vw,54px)/1.12 'Playfair Display',serif;
    margin:10px 0 18px;
    color:var(--dark)
}

.lead {
    font-size:19px
}

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

.service-card {
    border:1px solid var(--line);
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    transition:.25s
}

.service-card:hover {
    transform:translateY(-5px);
    box-shadow:var(--shadow)
}

.service-image {
    height:190px;
    background-position:center;
    background-size:cover
}

.image-0 {
    background-image:url('assets/images/service-1.webp')
}

.image-1 {
    background-image:url('assets/images/service-2.webp')
}

.image-2 {
    background-image:url('assets/images/service-3.webp')
}

.image-3 {
    background-image:url('assets/images/service-4.webp')
}

.image-4 {
    background-image:url('assets/images/service-5.webp')
}

.image-5 {
    background-image:url('assets/images/service-6.webp')
}

.service-card>div:last-child {
    padding:24px
}

.service-card h2, .service-card h3 {
    font:700 25px 'Playfair Display',serif;
    margin:4px 0
}

.service-card p {
    color:#68736b
}

.service-card b, .service-card span {
    color:var(--green)
}

.center {
    text-align:center;
    padding-bottom:70px
}

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

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

.photo-panel, .about-photo {
    height:560px;
    border-radius:10px;
    background:url('assets/images/about-main.webp') center/cover;
    box-shadow:var(--shadow)
}

.about-photo {
    background-image:url('assets/images/about-planting.webp')
}

.ticks {
    list-style:none;
    padding:0
}

.ticks li {
    margin:10px 0
}

.ticks li:before {
    content:'✓';
    color:var(--green);
    font-weight:900;
    margin-right:10px
}

.section-head {
    display:flex;
    justify-content:space-between;
    align-items:end
}

.section-head>a {
    color:var(--green);
    font-weight:800
}

.review-slider, .review-list {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px
}

.review-slider article, .review-list article {
    padding:30px;
    border:1px solid var(--line);
    border-radius:10px;
    background:#fff
}

.stars {
    color:#d6a934;
    letter-spacing:2px
}

.review-slider p, .review-list p {
    font:19px 'Playfair Display',serif
}

.review-list small {
    display:block;
    color:#849087
}

.cta {
    padding:55px 7vw;
    background:var(--green);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px
}

.cta h2 {
    font:700 38px 'Playfair Display',serif;
    margin:0
}

.cta>div:last-child {
    display:flex;
    gap:10px
}

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

.ghost-light {
    background:transparent;
    border:1px solid #fff
}

.page-hero {
    min-height:410px;
    display:flex;
    align-items:center;
    padding:70px 8vw;
    color:#fff;
    background-position:center;
    background-size:cover;
    position:relative
}

.page-hero:before {
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(27,52,32,.9),rgba(45,74,49,.3))
}

.page-hero>div {
    position:relative;
    max-width:740px
}

.page-hero h1 {
    font:700 56px/1.05 'Playfair Display',serif;
    margin:8px 0
}

.services-hero, .service-hero {
    background-image:url('assets/images/services-hero.webp')
}

.gallery-hero {
    background-image:url('assets/images/gallery-hero.webp')
}

.reviews-hero {
    background-image:url('assets/images/reviews-hero.webp')
}

.contact-hero {
    background-image:url('assets/images/contact-hero.webp')
}

.about-hero {
    background-image:url('assets/images/about-hero.webp')
}

.quote-box {
    padding:35px;
    background:var(--soft);
    border-radius:12px;
    text-align:center
}

.quote-box img {
    width:170px;
    border-radius:50%
}

.quote-box .btn {
    display:flex;
    margin:10px 0
}

.whatsapp {
    background:#218b55
}

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

.gallery-grid figure {
    margin:0;
    border-radius:10px;
    overflow:hidden;
    background:var(--soft)
}

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

.gallery-grid figcaption {
    padding:14px
}

.empty {
    grid-column:1/-1;
    text-align:center;
    padding:70px;
    background:var(--soft)
}

.reviews-layout, .contact-layout {
    display:grid;
    grid-template-columns:1.6fr .85fr;
    gap:50px;
    align-items:start
}

.review-form, .quote-form, .contact-details {
    padding:35px;
    background:var(--soft);
    border-radius:12px;
    position:sticky;
    top:115px
}

.review-form label, .quote-form label, .admin-card label, .admin-login label {
    display:block;
    font-weight:800;
    margin:14px 0
}

.review-form input, .review-form select, .review-form textarea, .quote-form input, .quote-form select, .quote-form textarea, .admin-card input, .admin-login input {
    width:100%;
    padding:13px;
    border:1px solid #cad7c7;
    border-radius:6px;
    background:#fff;
    font:inherit
}

.review-form textarea, .quote-form textarea {
    min-height:150px
}

.notice {
    background:#dcebd8;
    padding:12px;
    border-radius:6px
}

.form-note {
    font-size:12px
}

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

.contact-details {
    position:static;
    background:var(--dark);
    color:#fff
}

.contact-details img {
    width:200px;
    border-radius:50%;
    display:block;
    margin:auto
}

.contact-details a {
    display:flex;
    flex-direction:column;
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,.15)
}

.footer {
    background:#1f2d24;
    color:#dce5de;
    padding:55px 7vw;
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:50px
}

.footer img {
    width:110px;
    border-radius:50%
}

.footer a {
    display:block;
    margin:8px 0
}

.mobile-bar {
    display:none
}

.chat-fab {
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:60;
    border:0;
    background:var(--green);
    color:#fff;
    padding:15px 20px;
    border-radius:30px;
    font-weight:800;
    box-shadow:var(--shadow)
}

.chat-panel {
    position:fixed;
    right:22px;
    bottom:82px;
    width:360px;
    max-width:calc(100vw - 30px);
    background:#fff;
    border-radius:14px;
    box-shadow:0 25px 70px rgba(0,0,0,.25);
    z-index:61;
    display:none;
    overflow:hidden
}

.chat-panel.open {
    display:block
}

.chat-panel header {
    background:var(--dark);
    color:#fff;
    padding:15px;
    display:flex;
    justify-content:space-between
}

.chat-panel header button {
    background:none;
    color:#fff;
    border:0;
    font-size:22px
}

.chat-panel>div {
    height:260px;
    overflow:auto;
    padding:15px
}

.chat-panel p {
    padding:10px;
    background:var(--soft);
    border-radius:8px
}

.chat-panel form {
    display:flex;
    padding:12px;
    border-top:1px solid var(--line)
}

.chat-panel input {
    flex:1;
    padding:11px;
    border:1px solid var(--line)
}

.chat-panel form button {
    border:0;
    background:var(--green);
    color:#fff;
    padding:0 15px
}

.chat-panel>small {
    display:block;
    padding:0 12px 12px
}

.admin-body {
    background:var(--soft);
    min-height:100vh
}

.admin-login {
    max-width:440px;
    margin:8vh auto;
    background:#fff;
    padding:35px;
    border-radius:14px;
    box-shadow:var(--shadow)
}

.admin-login img {
    width:150px;
    border-radius:50%;
    display:block;
    margin:auto
}

.admin-head {
    padding:18px 5vw;
    background:var(--dark);
    color:#fff;
    display:flex;
    gap:20px;
    align-items:center
}

.admin-head h1 {
    margin-right:auto
}

.admin-main {
    padding:35px 5vw;
    display:grid;
    gap:25px
}

.admin-card {
    background:#fff;
    padding:25px;
    border-radius:12px
}

.admin-gallery {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px
}

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

.admin-row {
    display:flex;
    justify-content:space-between;
    gap:20px;
    border-top:1px solid var(--line);
    padding:15px 0
}

.admin-row small {
    display:block
}

.danger {
    border:0;
    background:#9f3636;
    color:#fff;
    padding:9px 12px;
    border-radius:5px
}

@media(max-width:1050px) {
    .header-actions .phone {
        display:none
    }

    .mainnav {
        gap:14px
    }

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

}

@media(max-width:800px) {
    body {
        padding-bottom:58px
    }

    .site-header {
        height:78px;
        padding:0 16px
    }

    .brand img {
        width:60px;
        height:60px
    }

    .brand span {
        display:none
    }

    .menu-toggle {
        display:block;
        border:0;
        background:var(--soft);
        padding:10px
    }

    .mainnav {
        position:fixed;
        top:78px;
        left:0;
        right:0;
        bottom:58px;
        background:#fff;
        display:none;
        overflow:auto;
        padding:15px;
        align-items:stretch
    }

    .mainnav.open {
        display:block
    }

    .mainnav>a, .nav-drop>button {
        display:block;
        width:100%;
        padding:14px;
        text-align:left;
        border-bottom:1px solid var(--line)
    }

    .dropdown {
        position:static;
        width:auto;
        display:none;
        grid-template-columns:1fr;
        box-shadow:none;
        opacity:1;
        visibility:visible;
        transform:none;
        padding:8px
    }

    .nav-drop.open .dropdown {
        display:grid
    }

    .header-actions .btn {
        padding:10px 12px
    }

    .hero {
        min-height:720px;
        display:block;
        padding:80px 24px
    }

    .hero-overlay {
        background:linear-gradient(rgba(27,52,32,.84),rgba(27,52,32,.72))
    }

    .hero h1 {
        font-size:50px
    }

    .hero-badge {
        display:none
    }

    .trust {
        display:grid;
        gap:8px
    }

    .section {
        padding:60px 20px
    }

    .service-grid, .review-slider, .review-list, .gallery-grid {
        grid-template-columns:1fr
    }

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

    .photo-panel, .about-photo {
        height:380px
    }

    .section-head, .cta {
        align-items:flex-start;
        flex-direction:column
    }

    .review-form, .quote-form {
        position:static
    }

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

    .footer {
        grid-template-columns:1fr;
        padding:50px 20px
    }

    .mobile-bar {
        position:fixed;
        display:grid;
        grid-template-columns:1fr 1fr 1fr;
        left:0;
        right:0;
        bottom:0;
        height:58px;
        background:var(--dark);
        z-index:70
    }

    .mobile-bar a, .mobile-bar button {
        display:flex;
        align-items:center;
        justify-content:center;
        color:#fff;
        border:0;
        border-right:1px solid rgba(255,255,255,.15);
        background:none;
        font-weight:800
    }

    .chat-fab {
        display:none
    }

    .chat-panel {
        right:10px;
        bottom:68px
    }

    .admin-gallery {
        grid-template-columns:1fr 1fr
    }

    .page-hero h1 {
        font-size:43px
    }

}

/* MODERN FM STEWART BUILD */
:root {
    --green:#79a878;
    --deep:#183226;
    --lime:#dff2d5;
    --mint:#f1f8ef;
    --shadow:0 22px 70px rgba(25,55,35,.16)
}

body {
    font-family:Arial,Helvetica,sans-serif;
    padding-bottom:74px
}

.site-header {
    height:104px;
    padding-left:190px;
    background:rgba(255,255,255,.93);
    backdrop-filter:blur(18px)
}

.brand-overlap {
    position:absolute;
    left:36px;
    top:24px;
    z-index:90
}

.brand-overlap img {
    width:142px;
    height:142px;
    object-fit:contain;
    border-radius:50%;
    filter:drop-shadow(0 16px 25px rgba(25,55,35,.2))
}

.brand-name {
    display:flex;
    flex-direction:column;
    line-height:1.05;
    margin-right:auto
}

.brand-name b {
    font-size:22px;
    font-weight:900
}

.brand-name small {
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--green);
    font-weight:800
}

.mainnav {
    margin-left:auto
}

.btn {
    border-radius:999px
}

.quote-btn {
    background:var(--deep)
}

.hero {
    min-height:700px;
    background-image:url('assets/images/home-hero.png')
}

.hero h1, .page-hero h1 {
    font-family:Arial,Helvetica,sans-serif;
    font-weight:900;
    letter-spacing:-3px
}

.service-card {
    border-radius:24px;
    box-shadow:0 8px 30px rgba(29,60,38,.06)
}

.service-image {
    height:230px;
    overflow:hidden
}

.service-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s
}

.service-card:hover .service-image img {
    transform:scale(1.05)
}

.service-feature {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:75px;
    align-items:center
}

.service-photo {
    border-radius:30px;
    overflow:hidden;
    box-shadow:var(--shadow)
}

.service-photo img {
    width:100%;
    height:610px;
    object-fit:cover
}

.fixed-action-bar {
    position:fixed;
    left:50%;
    bottom:14px;
    transform:translateX(-50%);
    z-index:100;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    width:min(760px,calc(100% - 28px));
    background:rgba(24,50,38,.96);
    backdrop-filter:blur(18px);
    border-radius:999px;
    box-shadow:0 18px 60px rgba(0,0,0,.25);
    overflow:hidden
}

.fixed-action-bar a, .fixed-action-bar button {
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:58px;
    color:#fff;
    border:0;
    border-right:1px solid rgba(255,255,255,.12);
    background:none;
    font-weight:800;
    cursor:pointer
}

.call-panel {
    position:fixed;
    inset:0;
    background:rgba(8,20,13,.72);
    backdrop-filter:blur(8px);
    z-index:200;
    display:none;
    place-items:center;
    padding:20px
}

.call-panel.open {
    display:grid
}

.call-phone {
    position:relative;
    width:min(390px,100%);
    min-height:650px;
    background:linear-gradient(180deg,#193627,#0f2419);
    border:10px solid #101713;
    border-radius:48px;
    color:#fff;
    text-align:center;
    padding:70px 34px 34px;
    box-shadow:0 35px 100px rgba(0,0,0,.45)
}

.call-notch {
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:150px;
    height:28px;
    background:#101713;
    border-radius:0 0 20px 20px
}

.call-close {
    position:absolute;
    right:22px;
    top:25px;
    border:0;
    background:rgba(255,255,255,.1);
    color:#fff;
    width:38px;
    height:38px;
    border-radius:50%;
    font-size:24px
}

.call-phone img {
    width:180px;
    height:180px;
    object-fit:contain;
    border-radius:50%;
    margin:0 auto 24px
}

.call-kicker {
    color:#bfe5b7;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:11px;
    font-weight:800
}

.call-phone h2 {
    font-size:28px;
    margin:8px 0
}

.call-wave {
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    margin:20px 0
}

.call-wave i {
    width:7px;
    height:22px;
    background:#9ed894;
    border-radius:7px;
    animation:wave 1s ease-in-out infinite
}

.call-wave i:nth-child(2), .call-wave i:nth-child(4) {
    animation-delay:.15s
}

.call-wave i:nth-child(3) {
    animation-delay:.3s
}

@keyframes wave {
    50% {
        height:55px
    }

}

.start-call, .end-call {
    width:82px;
    height:82px;
    border:0;
    border-radius:50%;
    color:#fff;
    font-weight:800;
    cursor:pointer
}

.start-call {
    background:#39a967
}

.end-call {
    background:#d84d4d
}

.call-phone small {
    display:block;
    margin-top:28px;
    color:#b9c8be
}

.chat-panel {
    bottom:90px
}

.whatsapp {
    background:#218b55
}

@media(max-width:1100px) {
    .site-header {
        padding-left:165px
    }

    .brand-overlap {
        left:24px
    }

    .brand-overlap img {
        width:125px;
        height:125px
    }

    .header-actions .phone {
        display:none
    }

}

@media(max-width:800px) {
    body {
        padding-bottom:70px
    }

    .site-header {
        height:84px;
        padding-left:118px
    }

    .brand-overlap {
        left:10px;
        top:16px
    }

    .brand-overlap img {
        width:100px;
        height:100px
    }

    .brand-name {
        display:none
    }

    .header-actions .ai-call-open {
        display:none
    }

    .service-feature {
        grid-template-columns:1fr;
        gap:35px
    }

    .service-photo img {
        height:390px
    }

    .fixed-action-bar {
        bottom:8px;
        width:calc(100% - 16px);
        border-radius:18px
    }

    .fixed-action-bar a, .fixed-action-bar button {
        min-height:58px;
        font-size:12px
    }

}

/* PREMIUM LIGHT SAGE REFINEMENT */
:root {
    --green:#9fbea0;
    --green-strong:#78977a;
    --deep:#33473a;
    --lime:#e9f3e5;
    --mint:#f6faf3;
    --cream:#fffdf8;
    --white:#ffffff;
    --text:#344039;
    --muted:#718077;
    --line:#e3ece0;
    --shadow:0 24px 65px rgba(72,101,76,.13);
}

body {
    background:var(--cream);
    color:var(--text)
}

.site-header {
    background:rgba(255,253,248,.96);
    border-bottom:1px solid rgba(159,190,160,.26)
}

.mainnav a, .mainnav button {
    color:#435148
}

.mainnav .active {
    color:var(--green-strong)
}

.dropdown {
    background:#fffefb;
    border:1px solid var(--line)
}

.dropdown a:hover {
    background:#f1f7ee;
    color:var(--green-strong)
}

.btn {
    background:var(--green-strong);
    box-shadow:0 8px 22px rgba(120,151,122,.18)
}

.quote-btn {
    background:#526a58
}

.hero-overlay {
    background:linear-gradient(90deg,rgba(56,77,61,.78) 0%,rgba(74,98,77,.55) 46%,rgba(103,128,105,.10) 100%)
}

.page-hero:before {
    background:linear-gradient(90deg,rgba(57,76,61,.76),rgba(99,126,102,.18))
}

.hero h1 span {
    color:#e8f5e4
}

.soft {
    background:linear-gradient(135deg,#f3f8f0,#fffdf8)
}

.service-card, .review-slider article, .review-list article, .review-form, .quote-form, .admin-card {
    background:#fffefb;
    border-color:var(--line)
}

.service-card:hover {
    box-shadow:0 24px 65px rgba(86,117,89,.15)
}

.service-card b, .service-card span, .section-head>a, .eyebrow {
    color:var(--green-strong)
}

.ticks li:before {
    background:#e8f2e4;
    color:var(--green-strong)
}

.cta {
    background:linear-gradient(135deg,#a9c6a8,#8fb18f);
    color:#fff
}

.contact-details, .footer, .fixed-action-bar {
    background:#3e5546
}

.call-phone {
    background:linear-gradient(180deg,#59735f,#344a3b)
}

.fixed-action-bar {
    box-shadow:0 18px 50px rgba(54,76,61,.28)
}

.brand-overlap img {
    filter:drop-shadow(0 16px 24px rgba(72,101,76,.17))
}

.service-image, .service-photo {
    background:#edf4ea
}

.service-image img, .service-photo img {
    background:#edf4ea
}

.gallery-item img {
    cursor:zoom-in;
    transition:.35s
}

.gallery-item:hover img {
    transform:scale(1.025)
}

.lightbox {
    position:fixed;
    inset:0;
    z-index:300;
    background:rgba(27,39,31,.88);
    display:grid;
    place-items:center;
    padding:30px;
    backdrop-filter:blur(8px)
}

.lightbox img {
    max-width:min(1200px,94vw);
    max-height:88vh;
    border-radius:18px;
    box-shadow:0 30px 100px rgba(0,0,0,.45)
}

.lightbox button {
    position:fixed;
    right:24px;
    top:20px;
    border:0;
    background:#fff;
    color:#344039;
    width:46px;
    height:46px;
    border-radius:50%;
    font-size:30px;
    cursor:pointer
}

.service-image-form {
    display:grid;
    grid-template-columns:1fr 1fr 1.3fr auto;
    gap:14px;
    align-items:end
}

.service-image-form label {
    margin:0
}

@media(max-width:900px) {
    .service-image-form {
        grid-template-columns:1fr
    }

}

/* EXACT CLIENT GREEN */
:root {
    --green:#AFE1AF;
    --green-strong:#7FAE80;
    --lime:#EAF7EA;
    --mint:#F7FCF7;
    --line:#DCEEDD;
}

.site-header {
    border-bottom-color:#DCEEDD
}

.btn {
    background:#7FAE80
}

.service-card b, .service-card span, .section-head>a, .eyebrow {
    color:#7FAE80
}

.cta {
    background:linear-gradient(135deg,#AFE1AF,#91C392)
}

/* ==========================================================
   DREAMWEAVER-FRIENDLY IMAGE ELEMENTS
   All heroes now use visible <img> tags in the PHP templates.
   ========================================================== */
.hero, .page-hero {
    position: relative;
    overflow: hidden;
    background: #dceedd;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-copy, .hero-badge, .page-hero > div:not(.hero-overlay) {
    position: relative;
    z-index: 2;
}

.photo-panel {
    height: auto;
    min-height: 560px;
    overflow: hidden;
    background: #edf5eb;
}

.photo-panel img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

@media (max-width: 800px) {
    .hero-media {
        object-position: center;
    }

    .photo-panel, .photo-panel img {
        min-height: 380px;
    }

}

/* ==========================================================
   MOBILE HEADER AND NAVIGATION FIX
   Authoritative rules placed last to override older iterations.
   ========================================================== */
.menu-toggle-lines {
    display: inline-flex;
    width: 22px;
    height: 16px;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle-lines i {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle-text {
    font-weight: 800;
}

@media (max-width: 800px) {
    html, body {
        overflow-x: hidden;
    }

    body.menu-open {
        overflow: hidden;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 150;
        display: flex;
        align-items: center;
        width: 100%;
        height: 84px;
        padding: 0 14px 0 118px;
        gap: 10px;
    }

    .brand-overlap {
        left: 10px;
        top: 16px;
    }

    .brand-overlap img {
        width: 100px;
        height: 100px;
    }

    .brand-name, .header-actions {
        display: none !important;
    }

    .menu-toggle {
        position: relative;
        z-index: 155;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-width: 92px;
        min-height: 44px;
        margin: 0 0 0 auto !important;
        padding: 10px 14px;
        border: 1px solid #dceedd;
        border-radius: 999px;
        background: #ffffff;
        color: #33473a;
        box-shadow: 0 8px 22px rgba(51,71,58,.10);
        cursor: pointer;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mainnav {
        position: fixed !important;
        top: 84px !important;
        right: 0 !important;
        bottom: 70px !important;
        left: auto !important;
        z-index: 145;
        display: flex !important;
        width: min(360px, 88vw) !important;
        height: auto !important;
        margin: 0 !important;
        padding: 18px !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        overflow-y: auto !important;
        background: #fffdf8 !important;
        border-left: 1px solid #dceedd;
        box-shadow: -18px 20px 45px rgba(35,55,42,.18);
        opacity: 0;
        visibility: hidden;
        transform: translateX(105%);
        transition: transform .25s ease, opacity .2s ease, visibility .2s ease;
    }

    .mainnav.open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .mainnav > a, .nav-drop > button {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100% !important;
        min-height: 50px;
        padding: 13px 8px !important;
        border: 0 !important;
        border-bottom: 1px solid #e5efe3 !important;
        background: transparent !important;
        color: #33473a !important;
        text-align: left !important;
        font: inherit;
        font-weight: 800;
    }

    .mainnav > a.active {
        color: #7fae80 !important;
    }

    .nav-drop {
        width: 100%;
    }

    .nav-drop .dropdown {
        position: static !important;
        display: none !important;
        width: 100% !important;
        padding: 6px 0 10px 12px !important;
        grid-template-columns: 1fr !important;
        background: #f7fcf7 !important;
        border: 0 !important;
        border-radius: 0 0 12px 12px !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .nav-drop.open .dropdown {
        display: grid !important;
    }

    .nav-drop .dropdown a {
        display: block;
        padding: 10px 12px;
        border-bottom: 1px solid #e5efe3;
        font-size: 14px;
    }

}

/* ==========================================================
   FINAL MOBILE MENU CORRECTION
   Keeps the menu inside the header but sizes it to the viewport.
   This avoids the backdrop-filter/fixed-position clipping issue.
   ========================================================== */
@media (max-width: 800px) {
    .site-header {
        overflow: visible !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transform: none !important;
        filter: none !important;
    }

    .menu-toggle {
        position: relative !important;
        right: auto !important;
        margin-left: auto !important;
        flex: 0 0 auto !important;
    }

    .mainnav {
        position: absolute !important;
        top: 84px !important;
        right: 0 !important;
        bottom: auto !important;
        left: auto !important;
        width: min(360px, 92vw) !important;
        height: calc(100dvh - 84px - 70px) !important;
        max-height: calc(100dvh - 84px - 70px) !important;
        min-height: 320px !important;
        padding: 16px 18px 28px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        background: #fffdf8 !important;
        border-left: 1px solid #dceedd !important;
        border-top: 1px solid #dceedd !important;
        box-shadow: -18px 22px 50px rgba(35,55,42,.24) !important;
        z-index: 9999 !important;
    }

    .mainnav.open {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
    }

    .mainnav > a, .mainnav .nav-drop > button {
        flex: 0 0 auto !important;
        color: #33473a !important;
        background: transparent !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .mainnav .nav-drop {
        flex: 0 0 auto !important;
        display: block !important;
    }

}

/* DREAMWEAVER FULL-PAGE IMAGE EDITING */
.hero-media, .service-image img, .service-photo img, .photo-panel img {
    display: block;
}

.service-image img, .service-photo img, .photo-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-image {
    min-height: 230px;
}

.service-photo, .service-photo img {
    min-height: 520px;
}

@media (max-width: 800px) {
    .service-photo, .service-photo img {
        min-height: 380px;
    }

}


/* GALLERY MEDIA ADMIN EXTENSION — preserves locked site styling */
.gallery-grid video {
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    background:#111;
}

.admin-gallery video {
    width:100%;
    height:140px;
    object-fit:cover;
    display:block;
    background:#111;
}

.admin-gallery article {
    min-width:0;
}

.admin-help {
    display:block;
    margin:-4px 0 14px;
    color:#617064;
    line-height:1.5;
}

@media(max-width:620px) {
    .admin-gallery {
        grid-template-columns:1fr;
    }

    .gallery-grid video {
        height:240px;
    }
}


/* ==========================================================
   AI CALL SCREEN VISIBILITY FIX
   Keeps the call controls visible on short desktop screens,
   tablets and mobile devices without changing site styling.
   ========================================================== */
.call-panel {
    overflow-y:auto;
    overscroll-behavior:contain;
}

.call-phone {
    min-height:0;
    max-height:calc(100dvh - 32px);
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
}

.start-call,
.end-call {
    flex:0 0 auto;
    min-width:82px;
    min-height:82px;
    margin-left:auto;
    margin-right:auto;
}

@media (max-height:760px), (max-width:600px) {
    .call-panel {
        padding:10px;
        place-items:center;
    }

    .call-phone {
        width:min(390px,100%);
        max-height:calc(100dvh - 20px);
        padding:54px 24px 22px;
        border-width:7px;
        border-radius:36px;
    }

    .call-phone img {
        width:112px;
        height:112px;
        margin-bottom:14px;
    }

    .call-phone h2 {
        font-size:24px;
        margin:6px 0;
    }

    .call-phone #callStatus {
        margin:8px 0;
    }

    .call-wave {
        height:44px;
        margin:10px 0 14px;
    }

    .call-wave i {
        height:18px;
    }

    @keyframes wave {
        50% { height:38px; }
    }

    .start-call,
    .end-call {
        width:76px;
        height:76px;
        min-width:76px;
        min-height:76px;
        font-size:12px;
    }

    .call-phone small {
        margin-top:14px;
        font-size:11px;
        line-height:1.35;
    }
}

@media (max-height:620px) {
    .call-phone {
        padding-top:44px;
    }

    .call-phone img {
        width:82px;
        height:82px;
        margin-bottom:8px;
    }

    .call-kicker {
        margin:4px 0;
    }

    .call-wave {
        height:32px;
        margin:6px 0 10px;
    }

    .call-phone small {
        margin-top:10px;
    }
}
