:root {
    --ink: #17211b;
    --muted: #5d6d63;
    --line: #dbe4dd;
    --paper: #f7faf6;
    --white: #ffffff;
    --green: #246b3a;
    --green-dark: #154425;
    --gold: #c9953c;
    --blue: #276c9d;
    --danger: #a23a34;
    --shadow: 0 18px 50px rgba(22, 42, 29, .12);
}

/* Visual refresh */
:root {
    --ink: #18251d;
    --muted: #637369;
    --line: #d7e1d8;
    --paper: #f3f7f0;
    --white: #ffffff;
    --green: #267044;
    --green-dark: #102f1e;
    --moss: #6f8f4e;
    --gold: #d2a24c;
    --clay: #9f6b43;
    --blue: #2f719f;
    --danger: #a23a34;
    --shadow: 0 20px 50px rgba(22, 42, 29, .14);
    --soft-shadow: 0 10px 28px rgba(35, 60, 42, .09);
}

body {
    background:
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(243,247,240,.92)),
        repeating-linear-gradient(135deg, rgba(38,112,68,.035) 0 1px, transparent 1px 18px);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

.app-header {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 26px rgba(31, 54, 38, .08);
}

.site-header {
    backdrop-filter: blur(12px);
}

.brand {
    font-size: 1.02rem;
}

.brand-mark {
    background:
        linear-gradient(145deg, var(--green), var(--green-dark));
    box-shadow: inset 0 -7px 16px rgba(0, 0, 0, .18), 0 10px 20px rgba(16, 47, 30, .18);
}

.hero {
    background: url('https://images.unsplash.com/photo-1598902108854-10e335adac99?auto=format&fit=crop&w=1800&q=80') center/cover;
    isolation: isolate;
    min-height: 720px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    background:
        linear-gradient(115deg, rgba(16, 47, 30, .95) 0%, rgba(23, 62, 35, .78) 43%, rgba(20, 38, 26, .25) 100%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 42px);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 0;
}

.hero::after {
    background: linear-gradient(90deg, var(--gold), #f0d083, var(--moss));
    bottom: 0;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 2;
}

.hero .site-header {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    margin: 0 auto;
    max-width: 1240px;
    min-height: 76px;
    padding: 0 20px;
}

.hero .site-nav a {
    border-radius: 999px;
    padding: 8px 10px;
}

.hero .site-nav a:hover {
    background: rgba(255, 255, 255, .13);
}

.hero-content {
    margin: 0 auto;
    max-width: 1240px;
    padding-top: 118px;
}

.hero h1 {
    max-width: 900px;
    text-shadow: 0 18px 40px rgba(0, 0, 0, .34);
}

.hero p {
    color: rgba(255, 255, 255, .9);
    font-size: 1.22rem;
}

.eyebrow {
    color: var(--gold);
    font-size: .82rem;
    letter-spacing: .08em;
}

.button,
button,
input[type="submit"] {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(38, 112, 68, .18);
    min-height: 46px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
    box-shadow: 0 14px 26px rgba(38, 112, 68, .24);
    transform: translateY(-1px);
}

.button.secondary {
    background: #f7fbf5;
}

.hero .button.secondary {
    background: rgba(255, 255, 255, .96);
}

.whatsapp-button {
    border-color: rgba(37, 211, 102, .34);
    color: #155b31;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-highlights span {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    padding: 9px 14px;
}

.section {
    padding: 76px 36px;
}

.section:nth-of-type(odd) {
    background: rgba(255, 255, 255, .58);
}

.section-inner > h2 {
    max-width: 820px;
}

.card {
    border: 1px solid rgba(36, 107, 58, .13);
    box-shadow: var(--soft-shadow);
}

.service-grid {
    margin-top: 28px;
}

.service-card {
    min-height: 255px;
    overflow: hidden;
    position: relative;
}

.service-card::after {
    background: linear-gradient(180deg, rgba(38,112,68,.1), rgba(210,162,76,.08));
    content: "";
    height: 100%;
    position: absolute;
    right: -70px;
    top: -40px;
    transform: rotate(12deg);
    width: 140px;
}

.service-card h3,
.service-card p,
.service-icon {
    position: relative;
    z-index: 1;
}

.service-icon {
    align-items: center;
    background: #edf6ea;
    border: 1px solid rgba(38,112,68,.15);
    border-radius: 8px;
    display: inline-flex;
    height: 54px;
    justify-content: center;
    margin-bottom: 18px;
    width: 54px;
}

.service-icon::before {
    color: var(--green-dark);
    font-size: 1.55rem;
    font-weight: 900;
}

.service-icon.lawn::before { content: "LA"; }
.service-icon.cleanup::before { content: "CL"; }
.service-icon.irrigation::before { content: "IR"; }
.service-icon.snow::before { content: "SN"; }
.service-icon.garden::before { content: "GB"; }
.service-icon.schedule::before { content: "SC"; }

.process-band {
    background:
        linear-gradient(90deg, rgba(16,47,30,.96), rgba(38,84,48,.92)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 1px, transparent 1px 24px);
    color: var(--white);
}

.process-band article {
    border-left: 1px solid rgba(255,255,255,.2);
    padding: 8px 18px;
}

.process-band p {
    color: rgba(255,255,255,.82);
}

.step-number {
    color: var(--gold);
    display: block;
    font-size: .9rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.contact-section {
    background:
        linear-gradient(180deg, #f8fbf6, #edf4ec);
}

.contact-copy {
    align-self: start;
}

.contact-copy p {
    font-size: 1.03rem;
}

.contact-card {
    border-top: 5px solid var(--green);
}

.map-frame {
    box-shadow: var(--soft-shadow);
}

.tabs a {
    box-shadow: 0 6px 16px rgba(28, 47, 33, .05);
}

table {
    box-shadow: var(--soft-shadow);
}

th {
    background: #e8f1e8;
    color: #304438;
    letter-spacing: .04em;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(38,112,68,.12);
    outline: 0;
}

.calendar-day {
    box-shadow: inset 0 3px 0 rgba(38,112,68,.08);
}

.site-footer {
    background:
        linear-gradient(90deg, var(--green-dark), #183d28);
}

@media (max-width: 840px) {
    .hero {
        min-height: auto;
    }

    .hero .site-header {
        border-radius: 8px;
        padding: 16px;
    }

    .hero-content {
        padding-top: 72px;
    }

    .service-card {
        min-height: auto;
    }

    .process-band article {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.2);
        padding: 18px 0;
    }
}

/* Absolute final service icon override */
.service-icon::before,
.service-icon.lawn::before,
.service-icon.cleanup::before,
.service-icon.irrigation::before,
.service-icon.snow::before,
.service-icon.garden::before,
.service-icon.schedule::before {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    content: "" !important;
    display: block !important;
    font-size: 0 !important;
    height: 30px !important;
    line-height: 0 !important;
    width: 30px !important;
}

.service-icon.lawn::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20c3-6 7-10 16-13-1 8-5 12-13 13'/%3E%3Cpath d='M8 16c3-4 6-6 10-8'/%3E%3Cpath d='M3 20h18'/%3E%3C/svg%3E") !important;
}

.service-icon.cleanup::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M7 21l4-11'/%3E%3Cpath d='M12 10l6 2'/%3E%3Cpath d='M14 4l4 8'/%3E%3Cpath d='M10 10l3-7 2 1'/%3E%3C/svg%3E") !important;
}

.service-icon.irrigation::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3s6 6 6 11a6 6 0 0 1-12 0c0-5 6-11 6-11z'/%3E%3Cpath d='M9 15a3 3 0 0 0 3 3'/%3E%3C/svg%3E") !important;
}

.service-icon.snow::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M4.9 4.9l14.2 14.2'/%3E%3Cpath d='M19.1 4.9L4.9 19.1'/%3E%3Cpath d='M4 12h16'/%3E%3C/svg%3E") !important;
}

.service-icon.garden::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21V11'/%3E%3Cpath d='M12 11c-4 0-7-2-8-6 4 0 7 2 8 6z'/%3E%3Cpath d='M12 11c4 0 7-2 8-6-4 0-7 2-8 6z'/%3E%3Cpath d='M7 21h10'/%3E%3C/svg%3E") !important;
}

.service-icon.schedule::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='2'/%3E%3Cpath d='M8 3v4'/%3E%3Cpath d='M16 3v4'/%3E%3Cpath d='M4 10h16'/%3E%3Cpath d='M9 15l2 2 4-5'/%3E%3C/svg%3E") !important;
}

/* Final icon and slideshow overrides */
.logo-mark {
    background: #fff;
    border: 1px solid rgba(38,112,68,.16);
    box-shadow: 0 10px 22px rgba(16,47,30,.16);
    overflow: hidden;
}

.logo-mark img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hero {
    background: url('https://images.unsplash.com/photo-1598902108854-10e335adac99?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.hero-slideshow {
    inset: 0;
    overflow: hidden;
    position: absolute;
    z-index: 0;
}

.hero-slideshow span {
    animation: heroSlide 28s infinite;
    background-position: center;
    background-size: cover;
    inset: 0;
    opacity: 0;
    position: absolute;
    transform: scale(1.04);
}

.hero-slideshow .slide-one {
    background-image: url("https://images.unsplash.com/photo-1598902108854-10e335adac99?auto=format&fit=crop&w=1800&q=80");
}

.hero-slideshow .slide-two {
    animation-delay: 7s;
    background-image: url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1800&q=80");
}

.hero-slideshow .slide-three {
    animation-delay: 14s;
    background-image: url("https://images.unsplash.com/photo-1589923188900-85dae523342b?auto=format&fit=crop&w=1800&q=80");
}

.hero-slideshow .slide-four {
    animation-delay: 21s;
    background-image: url("https://images.unsplash.com/photo-1620121692029-d088224ddc74?auto=format&fit=crop&w=1800&q=80");
}

@keyframes heroSlide {
    0% { opacity: 0; transform: scale(1.04); }
    8% { opacity: .54; }
    28% { opacity: .54; transform: scale(1.1); }
    36% { opacity: 0; }
    100% { opacity: 0; transform: scale(1.1); }
}

.hero::before {
    background:
        linear-gradient(115deg, rgba(16,47,30,.78) 0%, rgba(26,66,39,.58) 42%, rgba(23,42,28,.18) 100%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 42px);
    z-index: 0;
}

.hero .site-header,
.hero-content {
    position: relative;
    z-index: 1;
}

.service-icon::before,
.service-icon.lawn::before,
.service-icon.cleanup::before,
.service-icon.irrigation::before,
.service-icon.snow::before,
.service-icon.garden::before,
.service-icon.schedule::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    font-size: 0;
    height: 30px;
    width: 30px;
}

.service-icon.lawn::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20c3-6 7-10 16-13-1 8-5 12-13 13'/%3E%3Cpath d='M8 16c3-4 6-6 10-8'/%3E%3Cpath d='M3 20h18'/%3E%3C/svg%3E");
}

.service-icon.cleanup::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M7 21l4-11'/%3E%3Cpath d='M12 10l6 2'/%3E%3Cpath d='M14 4l4 8'/%3E%3Cpath d='M10 10l3-7 2 1'/%3E%3C/svg%3E");
}

.service-icon.irrigation::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3s6 6 6 11a6 6 0 0 1-12 0c0-5 6-11 6-11z'/%3E%3Cpath d='M9 15a3 3 0 0 0 3 3'/%3E%3C/svg%3E");
}

.service-icon.snow::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M4.9 4.9l14.2 14.2'/%3E%3Cpath d='M19.1 4.9L4.9 19.1'/%3E%3Cpath d='M4 12h16'/%3E%3C/svg%3E");
}

.service-icon.garden::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21V11'/%3E%3Cpath d='M12 11c-4 0-7-2-8-6 4 0 7 2 8 6z'/%3E%3Cpath d='M12 11c4 0 7-2 8-6-4 0-7 2-8 6z'/%3E%3Cpath d='M7 21h10'/%3E%3C/svg%3E");
}

.service-icon.schedule::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='2'/%3E%3Cpath d='M8 3v4'/%3E%3Cpath d='M16 3v4'/%3E%3Cpath d='M4 10h16'/%3E%3Cpath d='M9 15l2 2 4-5'/%3E%3C/svg%3E");
}

/* Logo, hero slideshow, and service icon refinements */
.logo-mark {
    background: #fff;
    border: 1px solid rgba(38,112,68,.16);
    box-shadow: 0 10px 22px rgba(16,47,30,.16);
    overflow: hidden;
}

.logo-mark img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hero-slideshow {
    inset: 0;
    overflow: hidden;
    position: absolute;
    z-index: 0;
}

.hero-slideshow span {
    animation: heroSlide 28s infinite;
    background-position: center;
    background-size: cover;
    inset: 0;
    opacity: 0;
    position: absolute;
    transform: scale(1.04);
}

.hero-slideshow .slide-one {
    background-image: url("https://images.unsplash.com/photo-1598902108854-10e335adac99?auto=format&fit=crop&w=1800&q=80");
}

.hero-slideshow .slide-two {
    animation-delay: 7s;
    background-image: url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1800&q=80");
}

.hero-slideshow .slide-three {
    animation-delay: 14s;
    background-image: url("https://images.unsplash.com/photo-1589923188900-85dae523342b?auto=format&fit=crop&w=1800&q=80");
}

.hero-slideshow .slide-four {
    animation-delay: 21s;
    background-image: url("https://images.unsplash.com/photo-1620121692029-d088224ddc74?auto=format&fit=crop&w=1800&q=80");
}

@keyframes heroSlide {
    0% { opacity: 0; transform: scale(1.04); }
    8% { opacity: .54; }
    28% { opacity: .54; transform: scale(1.1); }
    36% { opacity: 0; }
    100% { opacity: 0; transform: scale(1.1); }
}

.hero::before {
    background:
        linear-gradient(115deg, rgba(16,47,30,.78) 0%, rgba(26,66,39,.58) 42%, rgba(23,42,28,.18) 100%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 42px);
}

.service-icon::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 30px;
    width: 30px;
}

.service-icon.lawn::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20c3-6 7-10 16-13-1 8-5 12-13 13'/%3E%3Cpath d='M8 16c3-4 6-6 10-8'/%3E%3Cpath d='M3 20h18'/%3E%3C/svg%3E");
}

.service-icon.cleanup::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M7 21l4-11'/%3E%3Cpath d='M12 10l6 2'/%3E%3Cpath d='M14 4l4 8'/%3E%3Cpath d='M10 10l3-7 2 1'/%3E%3C/svg%3E");
}

.service-icon.irrigation::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3s6 6 6 11a6 6 0 0 1-12 0c0-5 6-11 6-11z'/%3E%3Cpath d='M9 15a3 3 0 0 0 3 3'/%3E%3C/svg%3E");
}

.service-icon.snow::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M4.9 4.9l14.2 14.2'/%3E%3Cpath d='M19.1 4.9L4.9 19.1'/%3E%3Cpath d='M4 12h16'/%3E%3C/svg%3E");
}

.service-icon.garden::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21V11'/%3E%3Cpath d='M12 11c-4 0-7-2-8-6 4 0 7 2 8 6z'/%3E%3Cpath d='M12 11c4 0 7-2 8-6-4 0-7 2-8 6z'/%3E%3Cpath d='M7 21h10'/%3E%3C/svg%3E");
}

.service-icon.schedule::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='2'/%3E%3Cpath d='M8 3v4'/%3E%3Cpath d='M16 3v4'/%3E%3Cpath d='M4 10h16'/%3E%3Cpath d='M9 15l2 2 4-5'/%3E%3C/svg%3E");
}

@media (max-width: 840px) {
    .hero-slideshow span {
        background-position: center;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

a {
    color: var(--green);
    text-decoration: none;
}

img {
    max-width: 100%;
}

.app-header,
.site-header {
    align-items: center;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    align-items: center;
    color: var(--ink);
    display: inline-flex;
    font-weight: 800;
    gap: 10px;
}

.brand-mark {
    align-items: center;
    background: var(--green);
    border-radius: 6px;
    color: var(--white);
    display: inline-flex;
    height: 40px;
    justify-content: center;
    letter-spacing: 0;
    width: 40px;
}

.app-nav,
.site-nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
}

.app-main {
    margin: 0 auto;
    max-width: 1180px;
    min-height: calc(100vh - 150px);
    padding: 30px 20px 54px;
}

.hero {
    background:
        linear-gradient(90deg, rgba(11, 34, 18, .84), rgba(11, 34, 18, .48)),
        url('https://images.unsplash.com/photo-1598902108854-10e335adac99?auto=format&fit=crop&w=1800&q=80') center/cover;
    color: var(--white);
    min-height: 610px;
    padding: 28px 36px 70px;
}

.hero .site-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    color: var(--white);
    padding: 0;
}

.hero .site-nav a,
.hero .brand {
    color: var(--white);
}

.hero-content {
    max-width: 760px;
    padding: 92px 0 0;
}

.eyebrow {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(2.4rem, 7vw, 5.5rem);
}

h2 {
    font-size: 2rem;
}

.hero p {
    font-size: 1.15rem;
    max-width: 650px;
}

.button,
button,
input[type="submit"] {
    align-items: center;
    background: var(--green);
    border: 0;
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 700;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
}

.button.secondary,
button.secondary {
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
}

.button.warning {
    background: var(--gold);
    color: var(--ink);
}

.language-toggle {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    color: inherit;
    min-height: 36px;
    padding: 6px 12px;
}

.section {
    padding: 58px 36px;
}

.section-inner {
    margin: 0 auto;
    max-width: 1180px;
}

.grid {
    display: grid;
    gap: 18px;
}

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

.grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(28, 47, 33, .06);
    padding: 20px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric strong {
    font-size: 2rem;
}

.toolbar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
}

.tabs a {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-weight: 700;
    padding: 8px 14px;
}

.tabs a.active {
    background: var(--green);
    color: var(--white);
}

form {
    display: grid;
    gap: 14px;
}

label {
    color: var(--muted);
    display: grid;
    font-size: .92rem;
    font-weight: 700;
    gap: 6px;
}

input,
select,
textarea {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    font: inherit;
    min-height: 42px;
    padding: 10px 12px;
    width: 100%;
}

textarea {
    min-height: 118px;
    resize: vertical;
}

table {
    background: var(--white);
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

th,
td {
    border-bottom: 1px solid var(--line);
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

th {
    background: #edf4ee;
    font-size: .86rem;
    text-transform: uppercase;
}

.badge {
    background: #eef5ef;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: inline-flex;
    font-size: .85rem;
    font-weight: 800;
    padding: 4px 10px;
}

.badge.on_the_way,
.badge.in_progress {
    background: #e9f3fb;
    color: var(--blue);
}

.badge.completed,
.badge.approved,
.badge.paid,
.badge.closed {
    background: #e7f4ec;
    color: var(--green-dark);
}

.badge.payment_pending,
.badge.invoiced,
.badge.pending {
    background: #fff4df;
    color: #7a551b;
}

.badge.rejected {
    background: #fae7e5;
    color: var(--danger);
}

.calendar {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(7, minmax(120px, 1fr));
}

.calendar-day {
    background: var(--white);
    border: 1px solid var(--line);
    min-height: 128px;
    padding: 8px;
}

.calendar-day strong {
    display: block;
    margin-bottom: 8px;
}

.calendar-item {
    background: #edf7f0;
    border-left: 4px solid var(--green);
    border-radius: 6px;
    color: var(--ink);
    display: block;
    font-size: .84rem;
    margin: 6px 0;
    padding: 6px;
    text-align: left;
    width: 100%;
}

.job-dialog {
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 720px;
    padding: 20px;
    width: min(720px, calc(100vw - 32px));
}

.job-dialog::backdrop {
    background: rgba(14, 25, 18, .46);
}

.map-frame {
    border: 0;
    border-radius: 8px;
    height: 240px;
    width: 100%;
}

.photo-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.photo-grid img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.alert {
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.alert.success {
    background: #e7f4ec;
    color: var(--green-dark);
}

.alert.error {
    background: #fae7e5;
    color: var(--danger);
}

.site-footer {
    align-items: center;
    background: var(--green-dark);
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    padding: 22px;
}

.auth-shell {
    margin: 50px auto;
    max-width: 460px;
}

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

@media (max-width: 840px) {
    .app-header,
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 18px;
    }

    .hero {
        min-height: auto;
        padding: 20px 20px 52px;
    }

    .hero-content {
        padding-top: 62px;
    }

    .grid.two,
    .grid.three,
    .grid.four {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 42px 20px;
    }

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

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    th {
        display: none;
    }

    td {
        border-bottom: 0;
    }

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

/* Final presentation layer */
body {
    background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(243,247,240,.94)),
        repeating-linear-gradient(135deg, rgba(38,112,68,.04) 0 1px, transparent 1px 18px);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

.hero {
    isolation: isolate;
    min-height: 720px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    background:
        linear-gradient(115deg, rgba(16,47,30,.96) 0%, rgba(26,66,39,.8) 42%, rgba(23,42,28,.3) 100%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 42px);
    content: "";
    inset: 0;
    position: absolute;
    z-index: -1;
}

.hero::after {
    background: linear-gradient(90deg, var(--gold), #f0d083, var(--moss));
    bottom: 0;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    right: 0;
}

.hero .site-header {
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 10px;
    margin: 0 auto;
    max-width: 1240px;
    min-height: 76px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    margin: 0 auto;
    max-width: 1240px;
    padding-top: 118px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    max-width: 900px;
    text-shadow: 0 18px 40px rgba(0,0,0,.34);
}

.button,
button,
input[type="submit"] {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(38,112,68,.18);
    min-height: 46px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
    box-shadow: 0 14px 26px rgba(38,112,68,.24);
    transform: translateY(-1px);
}

.whatsapp-button {
    border-color: rgba(37,211,102,.34);
    color: #155b31;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-highlights span {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    padding: 9px 14px;
}

.section {
    padding: 76px 36px;
}

.card {
    border: 1px solid rgba(36,107,58,.13);
    box-shadow: var(--soft-shadow);
}

.service-grid {
    margin-top: 28px;
}

.service-card {
    min-height: 255px;
    overflow: hidden;
    position: relative;
}

.service-card::after {
    background: linear-gradient(180deg, rgba(38,112,68,.1), rgba(210,162,76,.08));
    content: "";
    height: 100%;
    position: absolute;
    right: -70px;
    top: -40px;
    transform: rotate(12deg);
    width: 140px;
}

.service-card h3,
.service-card p,
.service-icon {
    position: relative;
    z-index: 1;
}

.service-icon {
    align-items: center;
    background: #edf6ea;
    border: 1px solid rgba(38,112,68,.15);
    border-radius: 8px;
    display: inline-flex;
    height: 54px;
    justify-content: center;
    margin-bottom: 18px;
    width: 54px;
}

.service-icon::before {
    color: var(--green-dark);
    font-size: 1.55rem;
    font-weight: 900;
}

.service-icon.lawn::before { content: "LA"; }
.service-icon.cleanup::before { content: "CL"; }
.service-icon.irrigation::before { content: "IR"; }
.service-icon.snow::before { content: "SN"; }
.service-icon.garden::before { content: "GB"; }
.service-icon.schedule::before { content: "SC"; }

.process-band {
    background:
        linear-gradient(90deg, rgba(16,47,30,.96), rgba(38,84,48,.92)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 1px, transparent 1px 24px);
    color: var(--white);
}

.process-band article {
    border-left: 1px solid rgba(255,255,255,.2);
    padding: 8px 18px;
}

.process-band p {
    color: rgba(255,255,255,.82);
}

.step-number {
    color: var(--gold);
    display: block;
    font-size: .9rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.contact-section {
    background: linear-gradient(180deg, #f8fbf6, #edf4ec);
}

.contact-card {
    border-top: 5px solid var(--green);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(38,112,68,.12);
    outline: 0;
}

.app-header {
    background: rgba(255,255,255,.94);
    box-shadow: 0 8px 26px rgba(31,54,38,.08);
}

table,
.map-frame {
    box-shadow: var(--soft-shadow);
}

@media (max-width: 840px) {
    .hero {
        min-height: auto;
    }

    .hero .site-header {
        border-radius: 8px;
        padding: 16px;
    }

    .hero-content {
        padding-top: 72px;
    }

    .service-card {
        min-height: auto;
    }

    .process-band article {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.2);
        padding: 18px 0;
    }
}

/* Absolute final service icon override */
.service-icon::before,
.service-icon.lawn::before,
.service-icon.cleanup::before,
.service-icon.irrigation::before,
.service-icon.snow::before,
.service-icon.garden::before,
.service-icon.schedule::before {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    content: "" !important;
    display: block !important;
    font-size: 0 !important;
    height: 30px !important;
    line-height: 0 !important;
    width: 30px !important;
}

.service-icon.lawn::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20c3-6 7-10 16-13-1 8-5 12-13 13'/%3E%3Cpath d='M8 16c3-4 6-6 10-8'/%3E%3Cpath d='M3 20h18'/%3E%3C/svg%3E") !important;
}

.service-icon.cleanup::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M7 21l4-11'/%3E%3Cpath d='M12 10l6 2'/%3E%3Cpath d='M14 4l4 8'/%3E%3Cpath d='M10 10l3-7 2 1'/%3E%3C/svg%3E") !important;
}

.service-icon.irrigation::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3s6 6 6 11a6 6 0 0 1-12 0c0-5 6-11 6-11z'/%3E%3Cpath d='M9 15a3 3 0 0 0 3 3'/%3E%3C/svg%3E") !important;
}

.service-icon.snow::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M4.9 4.9l14.2 14.2'/%3E%3Cpath d='M19.1 4.9L4.9 19.1'/%3E%3Cpath d='M4 12h16'/%3E%3C/svg%3E") !important;
}

.service-icon.garden::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21V11'/%3E%3Cpath d='M12 11c-4 0-7-2-8-6 4 0 7 2 8 6z'/%3E%3Cpath d='M12 11c4 0 7-2 8-6-4 0-7 2-8 6z'/%3E%3Cpath d='M7 21h10'/%3E%3C/svg%3E") !important;
}

.service-icon.schedule::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='2'/%3E%3Cpath d='M8 3v4'/%3E%3Cpath d='M16 3v4'/%3E%3Cpath d='M4 10h16'/%3E%3Cpath d='M9 15l2 2 4-5'/%3E%3C/svg%3E") !important;
}
