/* GrassKings — Professional Lawn Care Site
   Black on white, clean, local business */

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

:root {
    --black:   #111111;
    --dark:    #1f2937;
    --gray:    #6b7280;
    --light:   #f9fafb;
    --border:  #e5e7eb;
    --green:   #16a34a;
    --green-d: #15803d;
    --green-l: #f0fdf4;
    --white:   #ffffff;
    --radius:  6px;
    --shadow:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-d); text-decoration: underline; }

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

/* ---------- Layout ---------- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ---------- Top Bar ---------- */
.topbar {
    background: var(--black);
    color: #e5e7eb;
    font-size: .8rem;
    padding: .45rem 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.topbar a { color: #d1fae5; }
.topbar a:hover { color: #fff; text-decoration: none; }

/* ---------- Header / Nav ---------- */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--black);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1.5rem;
}
.logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: .4rem;
    text-decoration: none;
}
.logo:hover { color: var(--green); text-decoration: none; }
.logo-icon { color: var(--green); font-size: 1.1rem; }
.main-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
}
.nav-link {
    padding: .4rem .75rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: var(--radius);
    transition: background .15s, color .15s;
    text-decoration: none;
}
.nav-link:hover, .nav-link.active {
    background: var(--light);
    color: var(--green);
    text-decoration: none;
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all .2s;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: .65rem 1.4rem;
    font-size: .95rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
}
.btn-primary {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}
.btn-primary:hover { background: var(--green-d); border-color: var(--green-d); color: #fff; text-decoration: none; }
.btn-outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: #fff; text-decoration: none; }
.btn-white {
    background: #fff;
    color: var(--black);
    border-color: #fff;
}
.btn-white:hover { background: #f3f4f6; color: var(--black); text-decoration: none; }
.btn-sm { padding: .4rem 1rem; font-size: .85rem; }

/* ---------- Hero ---------- */
.hero {
    background: var(--black);
    color: #fff;
    padding: 5rem 0;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--green); }
.hero p {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-phones { margin-top: 2.5rem; }
.hero-phones p { font-size: .8rem; color: #6b7280; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.hero-phone-list { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-phone-list a {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
}
.hero-phone-list a:hover { color: var(--green); text-decoration: none; }
.hero-phone-list strong { display: block; font-size: .78rem; color: #6b7280; font-weight: 400; }

/* Hero visual panel */
.hero-visual {
    background: #1f2937;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #374151;
}
.hero-visual-title {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #6b7280;
    margin-bottom: 1.25rem;
}
.service-pill {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1rem;
    background: #111827;
    border-radius: var(--radius);
    margin-bottom: .75rem;
    border-left: 3px solid var(--green);
}
.service-pill span:first-child { font-size: 1.25rem; }
.service-pill .sp-text { font-weight: 600; font-size: .95rem; }
.service-pill .sp-sub { font-size: .78rem; color: #6b7280; }
.hero-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 1.25rem;
}
.hero-stat {
    background: #111827;
    border-radius: var(--radius);
    padding: .9rem 1rem;
    text-align: center;
}
.hero-stat .num { font-size: 1.75rem; font-weight: 800; color: var(--green); }
.hero-stat .lbl { font-size: .75rem; color: #6b7280; }

/* ---------- Section basics ---------- */
.section { padding: 4.5rem 0; }
.section-light { background: var(--light); }
.section-green { background: var(--green); color: #fff; }
.section-black { background: var(--black); color: #fff; }

.section-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .5rem;
}
.section-label-white { color: #86efac; }
h2.section-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
    color: var(--black);
}
h2.section-title-white { color: #fff; }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 580px;
    margin-bottom: 2.5rem;
}

/* ---------- Services Grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow);
    transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--black);
}
.service-card p { font-size: .9rem; color: var(--gray); }

/* ---------- Why Choose Us ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.why-item { text-align: center; }
.why-item .icon {
    font-size: 2.25rem;
    margin-bottom: .75rem;
}
.why-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--black); }
.why-item p { font-size: .88rem; color: var(--gray); }

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: var(--black);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}
.cta-banner h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: .75rem; }
.cta-banner p { color: #9ca3af; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-phones { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 2rem; }
.cta-phone a { color: #fff; font-size: 1.5rem; font-weight: 800; text-decoration: none; display: block; }
.cta-phone a:hover { color: var(--green); }
.cta-phone span { display: block; font-size: .8rem; color: #6b7280; margin-bottom: .25rem; }

/* ---------- Articles / Blog ---------- */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}
.article-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--green);
    background: var(--green-l);
    padding: .2rem .6rem;
    border-radius: 100px;
    margin-bottom: .75rem;
}
.article-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--black); line-height: 1.4; }
.article-card p { font-size: .88rem; color: var(--gray); flex: 1; }
.article-card-link { margin-top: 1rem; font-size: .88rem; font-weight: 600; color: var(--green); }
.article-card-link:hover { color: var(--green-d); }

/* ---------- Page Hero ---------- */
.page-hero {
    background: var(--light);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
}
.page-hero h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -.03em; color: var(--black); margin-bottom: .5rem; }
.page-hero p { font-size: 1.05rem; color: var(--gray); max-width: 600px; }
.breadcrumb { font-size: .82rem; color: var(--gray); margin-bottom: .75rem; }
.breadcrumb a { color: var(--green); }

/* ---------- Team Cards ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow);
    text-align: center;
}
.team-card .avatar {
    width: 72px; height: 72px;
    background: var(--black);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}
.team-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .25rem; }
.team-card .role { font-size: .85rem; color: var(--green); font-weight: 600; margin-bottom: .75rem; }
.team-card p { font-size: .9rem; color: var(--gray); }
.team-card .team-phone { margin-top: 1rem; font-size: 1rem; font-weight: 700; color: var(--black); }
.team-card .team-phone a { color: var(--black); text-decoration: none; }
.team-card .team-phone a:hover { color: var(--green); }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: .75rem; }
.contact-info p { color: var(--gray); margin-bottom: 1.5rem; }
.contact-person { margin-bottom: 1.5rem; padding: 1.25rem; background: var(--light); border-radius: var(--radius); border-left: 3px solid var(--green); }
.contact-person strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
.contact-person a { font-size: 1.1rem; font-weight: 700; color: var(--black); text-decoration: none; }
.contact-person a:hover { color: var(--green); }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 2rem; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .65rem .85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: .95rem;
    color: var(--dark);
    background: #fff;
    transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(22,163,74,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .9rem; }
.alert-success { background: var(--green-l); color: var(--green-d); border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ---------- Article Single ---------- */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.article-body { line-height: 1.75; }
.article-body h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 .75rem; color: var(--black); }
.article-body h3 { font-size: 1.2rem; font-weight: 700; margin: 1.5rem 0 .5rem; color: var(--black); }
.article-body p { margin-bottom: 1rem; }
.article-body ul, .article-body ol { margin: .75rem 0 1rem 1.5rem; }
.article-body li { margin-bottom: .35rem; }
.article-sidebar { position: sticky; top: 80px; }
.sidebar-box { background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-box h4 { font-size: .95rem; font-weight: 700; margin-bottom: 1rem; color: var(--black); }
.sidebar-cta { background: var(--black); color: #fff; border-radius: 10px; padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-cta h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.sidebar-cta p { font-size: .85rem; color: #9ca3af; margin-bottom: 1rem; }
.sidebar-cta a.btn-full { display: block; text-align: center; margin-bottom: .5rem; }

/* ---------- Services Page ---------- */
.services-section { padding: 3rem 0; border-bottom: 1px solid var(--border); }
.services-section:last-child { border-bottom: none; }
.services-section h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: .5rem; }
.services-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.service-detail-item { padding: 1.25rem; background: var(--light); border-radius: var(--radius); }
.service-detail-item h3 { font-size: .95rem; font-weight: 700; margin-bottom: .35rem; }
.service-detail-item p { font-size: .85rem; color: var(--gray); }

/* ---------- Privacy Page ---------- */
.prose h2 { font-size: 1.35rem; font-weight: 700; margin: 2rem 0 .5rem; color: var(--black); }
.prose p { margin-bottom: .9rem; color: var(--dark); }
.prose ul { margin: .5rem 0 1rem 1.5rem; }
.prose li { margin-bottom: .25rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #9ca3af; padding: 3.5rem 0 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-logo { font-size: 1.35rem; font-weight: 800; color: #fff; margin-bottom: .75rem; }
.footer-brand p { font-size: .88rem; line-height: 1.6; }
.footer-col h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #fff; margin-bottom: .9rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .45rem; font-size: .88rem; }
.footer-col a { color: #9ca3af; text-decoration: none; }
.footer-col a:hover { color: #d1fae5; text-decoration: none; }
.footer-bottom { border-top: 1px solid #1f2937; margin-top: 3rem; padding: 1.25rem 0; font-size: .82rem; text-align: center; }
.footer-bottom a { color: #6b7280; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.btn-full { width: 100%; text-align: center; display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
}
@media (max-width: 640px) {
    .mobile-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        border-bottom: 2px solid var(--black);
        box-shadow: 0 4px 12px rgba(0,0,0,.1);
    }
    .main-nav.open { display: flex; }
    .nav-link { width: 100%; padding: .6rem .75rem; }
    .btn-sm { width: 100%; text-align: center; }
    .hero h1 { font-size: 2.1rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-phones { flex-direction: column; gap: 1.5rem; text-align: center; }
    .hero-phone-list { flex-direction: column; gap: .75rem; }
}

/* ---------- Language Toggle ---------- */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0 .25rem;
}
.lang-btn {
    padding: .3rem .6rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--gray);
    text-decoration: none;
    background: var(--white);
    transition: background .15s, color .15s;
    border: none;
    line-height: 1;
}
.lang-btn:hover { background: var(--light); color: var(--black); text-decoration: none; }
.lang-btn.lang-active { background: var(--black); color: #fff; }
.lang-btn + .lang-btn { border-left: 1.5px solid var(--border); }
@media (max-width: 640px) {
    .lang-toggle { margin: .25rem 0; }
    .lang-btn { padding: .4rem .75rem; font-size: .85rem; }
}
