/* ============================================
   GrassKing Lawn Care LLC — Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a2e1f;
    background-color: #FAFAF5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 700;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #1B5E20;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Section Shared --- */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2E7D32;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #1B5E20;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a6b4e;
    max-width: 600px;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header--light .section-eyebrow {
    color: #81C784;
}

.section-title--light {
    color: #fff;
}

.section-subtitle--light {
    color: rgba(255,255,255,0.8);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.15s, box-shadow 0.25s;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: #2E7D32;
    color: #fff;
    border-color: #2E7D32;
}

.btn--primary:hover {
    background: #1B5E20;
    border-color: #1B5E20;
    box-shadow: 0 4px 16px rgba(27,94,32,0.3);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn--white {
    background: #fff;
    color: #1B5E20;
    border-color: #fff;
}

.btn--white:hover {
    background: #f0f7f0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn--ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn--ghost-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn--outline {
    background: transparent;
    color: #2E7D32;
    border-color: #2E7D32;
}

.btn--outline:hover {
    background: #2E7D32;
    color: #fff;
}

.btn--sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(27,94,32,0.1);
    transition: box-shadow 0.3s;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1B5E20;
}

.site-logo--light,
.site-logo__text--light {
    color: #fff;
}

.site-logo__accent {
    color: #4CAF50;
}

.site-logo__text--light .site-logo__accent {
    color: #81C784;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a2e1f;
    padding: 0.5rem 0.875rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.site-nav__link:hover {
    background: rgba(27,94,32,0.07);
    color: #2E7D32;
}

.site-nav__link--cta {
    background: #2E7D32;
    color: #fff;
    margin-left: 0.5rem;
}

.site-nav__link--cta:hover {
    background: #1B5E20;
    color: #fff;
}

/* Nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle__line {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a2e1f;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1B5E20;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 55, 18, 0.88) 0%,
        rgba(27, 94, 32, 0.80) 50%,
        rgba(15, 55, 18, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding: 8rem 1.5rem 4rem;
    color: #fff;
}

.hero__eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #81C784;
    margin-bottom: 1.25rem;
}

.hero__headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero__subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

/* --- Services --- */
.services {
    padding: 6rem 0;
    background: #FAFAF5;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(27,94,32,0.08);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27,94,32,0.1);
    border-color: rgba(46,125,50,0.2);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2E7D32;
    margin-bottom: 1.25rem;
}

.service-card__title {
    font-size: 1.15rem;
    color: #1B5E20;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.service-card__text {
    font-size: 0.95rem;
    color: #4a6b4e;
    line-height: 1.65;
}

/* --- About --- */
.about {
    padding: 6rem 0;
    background: #fff;
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.about__badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: #1B5E20;
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about__badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    color: #81C784;
}

.about__badge-label {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
}

.about__eyebrow {
    margin-bottom: 0.75rem;
}

.about__title {
    margin-bottom: 1.25rem;
}

.about__text {
    color: #4a6b4e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about__list {
    margin: 1.5rem 0 2rem;
    display: grid;
    gap: 0.75rem;
}

.about__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #1a2e1f;
    font-weight: 500;
}

.about__list svg {
    color: #2E7D32;
    flex-shrink: 0;
}

/* --- Why Us --- */
.why-us {
    padding: 6rem 0;
    background: #1B5E20;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

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

.why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: background 0.25s, transform 0.25s;
}

.why-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.why-card__number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(129,199,132,0.3);
    line-height: 1;
    margin-bottom: 1rem;
}

.why-card__title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.why-card__text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
}

/* --- Gallery --- */
.gallery {
    padding: 6rem 0;
    background: #FAFAF5;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

.gallery__item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery__item:hover img {
    transform: scale(1.03);
}

.gallery__item--large {
    grid-column: span 6;
}

.gallery__item:not(.gallery__item--large) {
    grid-column: span 4;
}

.gallery__item {
    height: 280px;
}

.gallery__item--large {
    height: 320px;
}

/* --- Service Area --- */
.service-area {
    padding: 5rem 0;
    background: #2E7D32;
}

.service-area__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.service-area__text {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-area__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.service-area__tag {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0d3310, #1B5E20, #2E7D32);
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-banner__text {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 480px;
    line-height: 1.6;
}

.cta-banner__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
    padding: 6rem 0;
    background: #fff;
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__title {
    margin-bottom: 1rem;
}

.contact__text {
    color: #4a6b4e;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact__details {
    display: grid;
    gap: 1.5rem;
}

.contact__detail-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2E7D32;
    margin-bottom: 0.25rem;
}

.contact__detail-value {
    font-size: 1rem;
    color: #1a2e1f;
    line-height: 1.6;
}

.contact__detail-value a {
    color: #1a2e1f;
    transition: color 0.2s;
}

.contact__detail-value a:hover {
    color: #2E7D32;
}

.contact__detail-value address {
    font-style: normal;
}

/* Form */
.contact__form-wrap {
    background: #FAFAF5;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(27,94,32,0.08);
}

.contact__form-title {
    font-size: 1.35rem;
    color: #1B5E20;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a2e1f;
    margin-bottom: 0.4rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #d4e4d6;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1a2e1f;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #2E7D32;
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

.form-input::placeholder {
    color: #9bb59e;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a2e1f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-notice {
    font-size: 0.8rem;
    color: #7a9a7e;
    margin-top: 1rem;
    text-align: center;
}

/* Success message */
.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success__icon {
    margin-bottom: 1rem;
}

.form-success__title {
    font-size: 1.5rem;
    color: #1B5E20;
    margin-bottom: 0.75rem;
}

.form-success__text {
    color: #4a6b4e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* --- Footer --- */
.site-footer {
    background: #0d1f0c;
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer__tagline {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 300px;
}

.site-footer__heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #81C784;
    margin-bottom: 1.25rem;
}

.site-footer__list {
    display: grid;
    gap: 0.6rem;
}

.site-footer__list a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}

.site-footer__list a:hover {
    color: #fff;
}

.site-footer__contact-list {
    gap: 0.875rem;
}

.site-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.site-footer__contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #81C784;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* --- Scroll reveal (progressive enhancement) --- */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .site-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid rgba(27,94,32,0.1);
        padding: 1rem 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s, opacity 0.3s;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .site-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .site-nav__list {
        flex-direction: column;
        gap: 0.25rem;
    }

    .site-nav__link {
        display: block;
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .site-nav__link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 0.5rem;
    }

    .hero__content {
        padding: 7rem 1.5rem 3rem;
    }

    .hero__trust {
        gap: 1rem;
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__image img {
        height: 350px;
    }

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

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

    .gallery__item--large,
    .gallery__item:not(.gallery__item--large) {
        grid-column: span 1;
    }

    .gallery__item,
    .gallery__item--large {
        height: 200px;
    }

    .contact__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner__actions {
        justify-content: center;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

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

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

    .gallery__item--large,
    .gallery__item:not(.gallery__item--large) {
        grid-column: span 1;
    }
}
