:root {
    --black: #070907;
    --charcoal: #101510;
    --deep-green: #0b3d1f;
    --green: #5fbf22;
    --green-2: #8de02f;
    --gold: #d6a927;
    --cream: #f4f7ef;
    --white: #ffffff;
    --muted: #a8b2a4;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--black);
    color: var(--white);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 6vw;
    background: rgba(7, 9, 7, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    background: radial-gradient(circle, var(--deep-green), var(--black));
    color: var(--green-2);
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 0 0 4px rgba(95, 191, 34, 0.2);
}

.brand strong,
.brand span {
    display: block;
}

.brand span {
    color: var(--green-2);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--cream);
    font-weight: 800;
}

.nav-call {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--green-2);
    color: var(--deep-green);
}

.nav-toggle {
    display: none;
    border: 0;
    background: none;
    color: var(--white);
    font-size: 32px;
}

.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    padding: 110px 6vw;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(7, 9, 7, 0.98), rgba(11, 61, 31, 0.88), rgba(7, 9, 7, 0.45)),
        url("https://images.unsplash.com/photo-1604187351574-c75ca79f5807?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.hero::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -200px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: rgba(95, 191, 34, 0.16);
    filter: blur(8px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 18px;
    padding: 9px 14px;
    background: rgba(95, 191, 34, 0.14);
    color: var(--green-2);
    border: 1px solid rgba(95, 191, 34, 0.35);
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 22px;
    font-size: clamp(56px, 10vw, 132px);
    line-height: 0.86;
    letter-spacing: -0.075em;
}

h2 {
    margin-bottom: 18px;
    color: inherit;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

h3 {
    font-size: 26px;
    line-height: 1.05;
}

.hero-copy,
.section-heading p,
.split p,
.pricing-card p,
.quote p {
    max-width: 740px;
    color: #dfe9da;
    font-size: clamp(19px, 2.4vw, 28px);
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 16px 24px;
    border: 0;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-2), var(--gold));
    color: var(--deep-green);
    box-shadow: 0 16px 34px rgba(95, 191, 34, 0.25);
}

.btn-secondary {
    background: var(--white);
    color: var(--deep-green);
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-strip span {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    color: var(--cream);
    font-weight: 800;
}

.quick-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 26px 6vw;
    background: var(--cream);
    color: var(--charcoal);
}

.quick-benefits article,
.service-card,
.review-grid article,
.pricing-card,
.quote-form {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.quick-benefits article {
    padding: 28px;
    background: var(--white);
}

.quick-benefits span {
    font-size: 38px;
}

.quick-benefits p,
.service-card p,
.review-grid p,
.accordion-panel,
.quote-form label {
    color: #334033;
    font-size: 18px;
    line-height: 1.5;
}

.section {
    padding: 92px 6vw;
}

.section-heading {
    max-width: 920px;
    margin-bottom: 38px;
}

.services,
.gallery,
.faq {
    background: var(--cream);
    color: var(--deep-green);
}

.services .section-heading p,
.gallery .section-heading p,
.faq .section-heading p {
    color: #3f4d42;
}

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

.service-card {
    min-height: 250px;
    padding: 30px;
    background: var(--white);
    border: 1px solid rgba(11, 61, 31, 0.12);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--deep-green), #062512);
    color: var(--white);
}

.service-card.featured p {
    color: #d9ead2;
}

.service-card a {
    color: var(--green-2);
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
    background: linear-gradient(135deg, var(--deep-green), #07150c);
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    font-size: 22px;
    font-weight: 900;
}

.check-list li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--green-2);
}

.pricing {
    background:
        linear-gradient(rgba(7, 9, 7, 0.88), rgba(7, 9, 7, 0.88)),
        radial-gradient(circle at top right, rgba(95, 191, 34, 0.25), transparent 42%);
}

.pricing-card {
    max-width: 980px;
    padding: 54px;
    background: linear-gradient(135deg, rgba(11, 61, 31, 0.95), rgba(16, 21, 16, 0.95));
    border: 1px solid rgba(214, 169, 39, 0.35);
}

.price-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0;
}

.price-points span {
    padding: 14px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 800;
}

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

.photo-card {
    min-height: 270px;
    display: flex;
    align-items: end;
    padding: 22px;
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78)),
        linear-gradient(135deg, #263526, #101510);
    color: var(--white);
    font-size: 28px;
    font-weight: 900;
}

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

.review-grid article {
    padding: 30px;
    background: var(--white);
    color: var(--charcoal);
}

.stars {
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 24px;
    letter-spacing: 0.08em;
}

.accordion {
    display: grid;
    gap: 14px;
    max-width: 980px;
}

.accordion-trigger {
    width: 100%;
    padding: 26px 30px;
    border: 0;
    border-radius: 24px;
    background: var(--white);
    color: var(--charcoal);
    font-size: 26px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.accordion-trigger::after {
    content: "+";
    float: right;
}

.accordion-trigger.active::after {
    content: "−";
}

.accordion-panel {
    display: none;
    margin-top: -10px;
    padding: 0 30px 28px;
    border-radius: 0 0 24px 24px;
    background: var(--white);
}

.accordion-panel.open {
    display: block;
}

.quote {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 54px;
    background: linear-gradient(135deg, var(--charcoal), var(--deep-green));
}

.quote-form {
    display: grid;
    gap: 18px;
    padding: 32px;
    background: var(--white);
    color: var(--charcoal);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    border: 1px solid #cfd8cd;
    border-radius: 14px;
    font: inherit;
}

.site-footer {
    display: grid;
    gap: 18px;
    justify-items: center;
    padding: 76px 6vw 120px;
    background: var(--deep-green);
    text-align: center;
}

.site-footer a {
    color: var(--white);
    font-size: 26px;
    font-weight: 900;
    text-decoration: underline;
}

.sticky-call {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: none;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--green-2), var(--gold));
    color: var(--deep-green);
    font-weight: 900;
    text-align: center;
    box-shadow: var(--shadow);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 88px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border-radius: 22px;
        background: var(--charcoal);
    }

    .site-nav.open {
        display: flex;
    }

    .quick-benefits,
    .service-grid,
    .gallery-grid,
    .review-grid,
    .split,
    .quote {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 78px;
    }

    .section {
        padding: 70px 6vw;
    }

    .pricing-card {
        padding: 32px;
    }

    .sticky-call {
        display: block;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 14px 18px;
    }

    .brand strong {
        font-size: 14px;
    }

    .brand span {
        font-size: 10px;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .quick-benefits {
        padding: 18px;
    }
}
