/* ===================================
   K.K.S. LAWN — MAIN STYLES
   =================================== */

:root {
    --deep:    #0c2016;
    --forest:  #183828;
    --mid:     #285c3a;
    --bright:  #4aaa55;
    --lime:    #8de08a;
    --cream:   #f5f3ec;
    --warm:    #eceadf;
    --white:   #fdfcf8;
    --text:    #1a1c18;
    --text-mid:#3d4437;
    --text-lt: #65705a;
    --border:  #d8d5c8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito", sans-serif;
    background: var(--cream);
    color: var(--text);
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

/* ---- REUSABLE ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 12px;
    display: block;
}

.eyebrow-dark {
    color: var(--bright);
}

/* ---- HEADER ---- */
.header {
    background: var(--deep);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.logo {
    font-family: "DM Serif Text", serif;
    font-size: 26px;
    color: white;
    letter-spacing: 0.3px;
}

.nav-toggle { display: none; }

.nav-toggle-label {
    font-size: 22px;
    cursor: pointer;
    color: white;
    padding: 6px 8px;
    line-height: 1;
    user-select: none;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--forest);
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.nav-toggle:checked ~ .nav-links {
    display: flex;
}

.nav-links a {
    padding: 14px 24px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.15s;
}

.nav-links a:hover { background: rgba(255,255,255,0.07); }
.nav-cta { color: var(--lime) !important; }

/* ---- HERO ---- */
.hero {
    background-image:
        linear-gradient(155deg, rgba(8,22,13,0.82) 0%, rgba(18,50,28,0.55) 100%),
        url("images/lawn.jpg");
    background-size: cover;
    background-position: center 40%;
    padding: 80px 24px;
    min-height: 65vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: "DM Serif Text", serif;
    font-size: clamp(40px, 9vw, 70px);
    line-height: 1.08;
    color: white;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.80);
    margin-bottom: 32px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn-primary {
    background: var(--mid);
    color: white;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.18s, transform 0.15s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--bright);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 13px 28px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.45);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: border-color 0.18s, background 0.18s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
}

.btn-large {
    background: var(--mid);
    color: white;
    padding: 18px 44px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    display: inline-block;
    transition: background 0.18s, transform 0.15s;
    letter-spacing: 0.3px;
}

.btn-large:hover {
    background: var(--bright);
    transform: translateY(-2px);
}

/* ---- TRUST BAR ---- */
.trust-bar {
    background: var(--forest);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.trust-item {
    padding: 22px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.trust-num {
    font-family: "DM Serif Text", serif;
    font-size: 30px;
    color: var(--lime);
    line-height: 1;
}

.trust-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* ---- ABOUT ---- */
.about {
    background: var(--white);
    padding: 64px 0;
    text-align: center;
}

.about h2 {
    font-family: "DM Serif Text", serif;
    font-size: 36px;
    color: var(--forest);
    margin-bottom: 18px;
}

.about p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 680px;
    margin: 0 auto 24px;
}

/* ---- REVIEWS ---- */
.reviews {
    background: var(--warm);
    padding: 64px 0;
    text-align: center;
}

.reviews h2 {
    font-family: "DM Serif Text", serif;
    font-size: 36px;
    color: var(--forest);
    margin-bottom: 32px;
}

.review-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
}

.review-card {
    background: var(--white);
    border-left: 5px solid var(--mid);
    padding: 28px 28px 20px;
    text-align: left;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
}

.quote-mark {
    font-family: "DM Serif Text", serif;
    font-size: 72px;
    color: var(--lime);
    line-height: 0.5;
    display: block;
    margin-bottom: 12px;
    opacity: 0.6;
}

.review-text {
    font-family: "DM Serif Text", serif;
    font-style: italic;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.55;
}

.review-author {
    font-weight: 700;
    font-size: 13px;
    color: var(--mid);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* ---- PROGRAM PREVIEW ---- */
.program-preview {
    background: var(--cream);
    padding: 64px 0;
}

.program-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.program-img img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    height: 300px;
}

.program-text h2 {
    font-family: "DM Serif Text", serif;
    font-size: 34px;
    color: var(--forest);
    margin-bottom: 16px;
    line-height: 1.2;
}

.program-text p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 24px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
    background: var(--deep);
    padding: 72px 24px;
    text-align: center;
}

.cta-banner h2 {
    font-family: "DM Serif Text", serif;
    font-size: clamp(24px, 5vw, 40px);
    color: white;
    margin-bottom: 28px;
    line-height: 1.2;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--deep);
    color: white;
    padding: 48px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-col h3 {
    font-family: "DM Serif Text", serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.footer-col h4 {
    font-family: "Nunito", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 10px;
    text-align: left;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.9;
    text-decoration: none;
    display: block;
    transition: color 0.15s;
}

.footer-col a:hover {
    color: rgba(255,255,255,0.9);
}

.author {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    text-align: center;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (min-width: 540px) {
    .trust-bar {
        grid-template-columns: repeat(4, 1fr);
    }
    .trust-item {
        border-bottom: none;
    }
}

@media (min-width: 768px) {
    .header {
        padding: 16px 48px;
    }

    .nav-toggle-label { display: none; }

    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 2px;
        align-items: center;
    }

    .nav-links a {
        padding: 8px 14px;
        border-bottom: none;
        border-radius: 6px;
        font-size: 14px;
    }

    .nav-links a:hover {
        background: rgba(255,255,255,0.1);
    }

    .hero {
        padding: 120px 48px;
    }

    .hero-content {
        margin: 0;
        text-align: left;
    }

    .hero-actions { justify-content: flex-start; }

    .review-grid {
        flex-direction: row;
    }

    .review-card { flex: 1; }

    .program-inner {
        flex-direction: row;
        align-items: center;
        gap: 64px;
    }

    .program-img {
        flex: 1.2;
        flex-shrink: 0;
    }

    .program-img img {
        height: 480px;
    }

    .program-text { flex: 1; }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}
