:root {
    --green-deep: #1a3a1f;
    --green-mid: #2d5a35;
    --green-bright: #4a8c56;
    --green-light: #7ab87d;
    --cream: #f5f0e8;
    --tan: #e8dfc8;
    --charcoal: #1c1c1a;
    --gray: #5a5a55;
    --white: #fefefe;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
}


/* NAV */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(26, 58, 31, 0.97);
    backdrop-filter: blur(12px);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    border-bottom: 1px solid rgba(74, 140, 86, 0.3);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-logo span {
    color: var(--green-light);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(245, 240, 232, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--green-light);
}

.nav-cta {
    background: var(--green-bright);
    color: var(--white) !important;
    padding: 0.5rem 1.4rem;
    border-radius: 2px;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--green-light) !important;
    color: var(--charcoal) !important;
}


/* HERO */

#home {
    min-height: 100vh;
    background: var(--green-deep);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 68px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(74, 140, 86, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(45, 90, 53, 0.4) 0%, transparent 50%);
}


/* Diagonal grass texture lines */

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient( -45deg, transparent, transparent 40px, rgba(74, 140, 86, 0.04) 40px, rgba(74, 140, 86, 0.04) 41px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8%;
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--green-light);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: normal;
    color: var(--green-light);
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.72);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--green-bright);
    color: var(--white);
    padding: 0.9rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
}

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

.btn-secondary {
    border: 1px solid rgba(245, 240, 232, 0.35);
    color: var(--cream);
    padding: 0.9rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
    border-color: var(--green-light);
    background: rgba(74, 140, 86, 0.1);
}

.hero-stars {
    position: absolute;
    right: 8%;
    bottom: 12%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(122, 184, 125, 0.25);
    backdrop-filter: blur(8px);
    padding: 1.5rem 2rem;
    border-radius: 4px;
    text-align: center;
    z-index: 2;
    animation: fadeUp 1s ease 0.5s both;
}

.hero-stars .stars {
    color: #f5c842;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
}

.hero-stars p {
    color: var(--cream);
    font-size: 0.85rem;
    margin-top: 0.4rem;
    font-weight: 300;
}

.hero-stars strong {
    color: var(--green-light);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
}


/* SECTIONS */

section {
    padding: 6rem 8%;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--green-bright);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.75;
    max-width: 540px;
}


/* SERVICES */

#services {
    background: var(--white);
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--tan);
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    transition: background 0.25s;
    cursor: default;
}

.service-card:hover {
    background: var(--green-deep);
}

.service-card:hover .service-icon {
    color: var(--green-light);
}

.service-card:hover h3 {
    color: var(--cream);
}

.service-card:hover p {
    color: rgba(245, 240, 232, 0.65);
}

.service-icon {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--green-bright);
    transition: color 0.25s;
    line-height: 1;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
    transition: color 0.25s;
}

.service-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    transition: color 0.25s;
}


/* ABOUT */

#about {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 7rem 8%;
}

.about-visual {
    position: relative;
}

.about-box {
    background: var(--green-deep);
    aspect-ratio: 4/5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-box-inner {
    text-align: center;
    padding: 3rem;
}

.about-box-inner .big-num {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 900;
    color: var(--green-bright);
    line-height: 1;
    opacity: 0.6;
}

.about-box-inner p {
    color: rgba(245, 240, 232, 0.7);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.about-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 60%;
    background: var(--green-bright);
    padding: 1.5rem 2rem;
    border-radius: 4px;
}

.about-accent p {
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
}

.about-accent strong {
    color: var(--cream);
    font-weight: 500;
}

.about-text .values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-item h4 {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--green-deep);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.value-item p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.65;
}


/* TESTIMONIALS */

#reviews {
    background: var(--green-deep);
    padding: 6rem 8%;
}

#reviews .section-label {
    color: var(--green-light);
}

#reviews .section-label::before {
    background: var(--green-light);
}

#reviews .section-title {
    color: var(--cream);
}

#reviews .section-sub {
    color: rgba(245, 240, 232, 0.6);
    max-width: 460px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 3.5rem;
    background: rgba(122, 184, 125, 0.15);
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border: 1px solid rgba(122, 184, 125, 0.1);
    transition: background 0.2s;
}

.review-card:hover {
    background: rgba(74, 140, 86, 0.15);
}

.review-stars {
    color: #f5c842;
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.review-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.8);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--green-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


/* CONTACT */

#contact {
    background: var(--cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(90, 90, 85, 0.12);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item .label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 0.4rem;
}

.contact-item .value {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 400;
}

.map-placeholder {
    border-radius: 4px;
    overflow: hidden;
    margin-top: 2rem;
}

.map-placeholder iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}

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

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

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--white);
    border: 1px solid rgba(90, 90, 85, 0.18);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--green-bright);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}


/* FOOTER */

footer {
    background: var(--charcoal);
    padding: 3rem 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

footer .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--cream);
}

footer .footer-logo span {
    color: var(--green-light);
}

footer p {
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.4);
    font-weight: 300;
}

footer .footer-links {
    display: flex;
    gap: 2rem;
}

footer .footer-links a {
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

footer .footer-links a:hover {
    color: var(--green-light);
}


/* ANIMATIONS */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
    animation-delay: 0.1s;
}


/* MOBILE — 768px and below */

@media (max-width: 768px) {
    nav {
        padding: 0 5%;
    }
    .nav-links {
        display: none;
    }
    section {
        padding: 4rem 5%;
    }
    /* HERO */
    #home {
        align-items: flex-start;
        padding-top: 100px;
        padding-bottom: 4rem;
    }
    .hero-content {
        padding: 0 5%;
        max-width: 100%;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-sub {
        font-size: 1rem;
        max-width: 100%;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn-primary,
    .btn-secondary {
        text-align: center;
        width: 100%;
    }
    .hero-stars {
        display: none;
    }
    /* SERVICES */
    .services-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    /* ABOUT */
    #about {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 4rem 5%;
    }
    .about-visual {
        /* Reserve space below for the overflowing accent box */
        margin-bottom: 4rem;
    }
    .about-box {
        aspect-ratio: 3/2;
    }
    .about-accent {
        position: absolute;
        bottom: -3rem;
        right: 0;
        left: auto;
        width: 78%;
    }
    .about-text .values {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    /* REVIEWS */
    #reviews {
        padding: 4rem 5%;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        margin-top: 2.5rem;
    }
    /* CONTACT */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .map-placeholder iframe {
        height: 200px;
    }
    /* FOOTER */
    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 5%;
        gap: 1.2rem;
    }
    footer .footer-links {
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    /* FORMS */
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* Extra small — 400px and below */

@media (max-width: 400px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .about-accent {
        width: 90%;
    }
    .review-card {
        padding: 1.8rem;
    }
}