:root {
    --forest: #154d1f;
    --leaf: #7fb229;
    --stone: #d9d9d6;
    --accent: #f28c1b;
    --ink: #112114;
    --white: #ffffff;
    --max: 1180px;
    --radius: 18px;
    --shadow: 0 12px 32px rgba(17, 33, 20, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: #f7f7f4;
    line-height: 1.6;
}

a { color: var(--forest); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.container { width: min(100% - 2rem, var(--max)); margin: 0 auto; }
.section { padding: 5rem 0; }
.alt { background: #eef3e8; }
.narrow-content { width: min(100% - 2rem, 760px); margin: 0 auto; }
.text-center { text-align: center; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 247, 244, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(17, 33, 20, 0.08);
}
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}
.branding { display: flex; flex-direction: column; }
.site-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.site-tagline {
    margin: 0.25rem 0 0;
    color: #47604d;
    font-size: 0.95rem;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.phone-link {
    font-weight: 700;
    color: var(--forest);
}
.menu-toggle {
    display: none;
    border: 1px solid var(--forest);
    background: transparent;
    color: var(--forest);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-weight: 700;
}
.main-navigation {
    padding-bottom: 1rem;
}
.main-navigation ul,
.footer-bottom ul,
.nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.main-navigation a,
.footer-bottom a {
    font-weight: 700;
    color: var(--ink);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.9rem 1.25rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-secondary {
    background: transparent;
    border: 2px solid var(--forest);
    color: var(--forest);
}

.hero {
    padding: 5.5rem 0 4.5rem;
    background: linear-gradient(180deg, #f7f7f4 0%, #edf4e8 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 2rem;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}
.hero h1,
.section-heading h2,
.entry-title,
.why-us h2 {
    line-height: 1.08;
    margin: 0 0 1rem;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); max-width: 12ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.75rem 0; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}
.hero-stats li {
    background: var(--white);
    border: 1px solid rgba(17, 33, 20, 0.08);
    border-radius: var(--radius);
    padding: 1rem;
}
.hero-stats strong {
    display: block;
    color: var(--forest);
    font-size: 1.3rem;
}
.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.hero-note { margin: 1rem 0 0; color: #516257; }
.mock-landscape {
    position: relative;
    min-height: 360px;
    background: #f4f6ef;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(17, 33, 20, 0.08);
}
.hill, .hardscape-path, .tree, .house { position: absolute; }
.hill-back {
    left: -10%; right: -10%; bottom: 28%; height: 34%;
    background: var(--leaf); border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hill-front {
    left: -5%; right: -5%; bottom: 0; height: 38%;
    background: var(--forest); border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hardscape-path {
    width: 38%; height: 72%; bottom: -8%; left: 31%;
    background: var(--stone);
    clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
}
.tree {
    width: 64px; height: 110px; bottom: 30%; background: var(--forest);
    clip-path: polygon(50% 0, 100% 45%, 78% 45%, 100% 72%, 65% 72%, 84% 100%, 16% 100%, 35% 72%, 0 72%, 22% 45%, 0 45%);
}
.tree-left { left: 14%; }
.tree-right { right: 12%; }
.house {
    width: 120px; height: 84px; left: calc(50% - 60px); bottom: 35%;
    background: var(--white);
    border: 6px solid var(--forest);
}
.house::before {
    content: "";
    position: absolute;
    left: -12px;
    top: -55px;
    width: 0; height: 0;
    border-left: 72px solid transparent;
    border-right: 72px solid transparent;
    border-bottom: 55px solid var(--accent);
}

.section-heading { max-width: 760px; margin-bottom: 2rem; }
.card-grid,
.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.service-card,
.project-card,
.post-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(17, 33, 20, 0.06);
}
.service-card h3,
.project-card h3 { margin-top: 0; }
.project-tag {
    display: inline-block;
    background: rgba(242, 140, 27, 0.15);
    color: #a85a00;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}
.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.checklist li {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(17, 33, 20, 0.08);
    font-weight: 700;
}
.checklist li:last-child { border-bottom: 0; }

.site-footer {
    background: var(--forest);
    color: var(--white);
    padding: 3.5rem 0 1.5rem;
}
.site-footer a { color: var(--white); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}
.footer-grid ul { margin: 0; padding-left: 1rem; }
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.18);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .hero-grid,
    .split-layout,
    .footer-grid,
    .card-grid,
    .project-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .topbar { align-items: flex-start; flex-direction: column; }
    .header-actions { width: 100%; flex-wrap: wrap; }
    .menu-toggle { display: inline-flex; }
    .main-navigation { display: none; padding-top: 0.25rem; }
    .main-navigation.is-open { display: block; }
    .main-navigation ul,
    .nav-menu,
    .footer-bottom ul { flex-direction: column; gap: 0.75rem; }
    .hero-grid,
    .split-layout,
    .footer-grid,
    .card-grid,
    .project-grid,
    .hero-stats { grid-template-columns: 1fr; }
    .hero { padding-top: 3.5rem; }
    .hero h1 { max-width: none; }
}


.page-hero {
    padding: 5rem 0 3.5rem;
    background: linear-gradient(180deg, #f7f7f4 0%, #eef3e8 100%);
}
.service-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}
.service-hero-panel,
.value-card,
.service-detail-card,
.quote-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(17, 33, 20, 0.08);
}
.service-hero-panel {
    padding: 1.5rem;
}
.service-highlight-list {
    display: grid;
    gap: 1rem;
}
.service-highlight-list div {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: #f7f7f4;
    border-left: 6px solid var(--accent);
}
.service-highlight-list strong,
.value-card h3,
.service-detail-card h3 {
    display: block;
    margin-bottom: 0.3rem;
}
.service-highlight-list span {
    color: #516257;
}
.service-detail-grid,
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.service-detail-card {
    padding: 1.5rem;
}
.service-detail-card ul,
.quote-benefits {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
}
.service-process-layout {
    align-items: center;
}
.process-list {
    margin: 0;
    padding-left: 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
}
.process-list li {
    padding: 0.65rem 0;
}
.value-card {
    padding: 1.5rem;
}
.section-embedded-form {
    padding-top: 0;
}
.quote-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    align-items: start;
    background: linear-gradient(135deg, var(--forest) 0%, #1c6128 100%);
    color: var(--white);
    border-radius: 24px;
    padding: 2rem;
}
.quote-copy h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.quote-copy p,
.quote-benefits {
    color: rgba(255, 255, 255, 0.9);
}
.quote-card {
    color: var(--ink);
    padding: 1.5rem;
}
.quote-form p {
    margin: 0 0 1rem;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.quote-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid rgba(17, 33, 20, 0.18);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font: inherit;
    background: #fff;
}
.quote-form textarea {
    min-height: 150px;
    resize: vertical;
}
.form-message {
    border-radius: 14px;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.form-success {
    background: rgba(127, 178, 41, 0.14);
    color: var(--forest);
}
.form-error {
    background: rgba(242, 140, 27, 0.14);
    color: #a85a00;
}
.quote-section-compact .quote-shell {
    padding: 1.5rem;
}

@media (max-width: 980px) {
    .service-hero-grid,
    .service-detail-grid,
    .value-grid,
    .quote-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.service-link-card {
    display: flex;
    flex-direction: column;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    font-weight: 800;
    color: var(--forest);
}

.text-link::after {
    content: "->";
    font-size: 0.95em;
}

.individual-service-hero .service-hero-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7f0 100%);
}
