:root {
    --forest-dark: #0C1F12;
    --forest-900: #112B1A;
    --forest-700: #1B4D30;
    --forest: #1D6040;
    --lime: #8BC34A;
    --lime-hover: #76A83A;
    --lime-light: #EEF7E0;
    --body-bg: #F5F9F3;
    --section-alt: #EAF2E7;
    --white: #ffffff;
    --text-dark: #0C1F12;
    --text-secondary: #2C4437;
    --text-muted: #567060;
    --text-light: #F5F9F3;
    --text-light-muted: rgba(245,249,243,0.68);
    --border: #C5DACC;
    --border-card: #D3E8D6;
    --shadow-sm: 0 1px 3px rgba(12,31,18,0.07), 0 1px 2px rgba(12,31,18,0.05);
    --shadow-md: 0 4px 12px rgba(12,31,18,0.09), 0 2px 4px rgba(12,31,18,0.05);
}

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

body {
    font-family: 'Quicksand', system-ui, sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--body-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAV ===== */
nav {
    background: var(--forest-dark);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.logo span { color: var(--lime); }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(245,249,243,0.60);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active { color: var(--text-light); }

.cta-nav {
    background: var(--lime);
    color: var(--forest-dark) !important;
    padding: 0.45rem 1.25rem;
    border-radius: 6px;
    font-weight: 700;
    transition: background 0.2s, transform 0.15s !important;
}

.cta-nav:hover {
    background: var(--lime-hover) !important;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(140deg, var(--forest-dark) 0%, var(--forest-700) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 64px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 72% 48%, rgba(139,195,74,0.11) 0%, transparent 58%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 3rem 0;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(139,195,74,0.12);
    color: var(--lime);
    font-family: 'Quicksand', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(139,195,74,0.22);
}

.hero-wordmark {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-size: 4.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.0;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.hero-wordmark span { color: var(--lime); }

.hero-tagline {
    font-family: 'Quicksand', system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 1.75rem;
}

.hero-para {
    font-size: 1.1rem;
    color: var(--text-light-muted);
    line-height: 1.72;
    max-width: 560px;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: var(--lime);
    color: var(--forest-dark);
    padding: 0.95rem 2.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Quicksand', system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.975rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    background: var(--lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139,195,74,0.28);
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
    background: var(--white);
}

.section.alt { background: var(--section-alt); }

.section-label {
    font-family: 'Quicksand', system-ui, sans-serif;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 0.55rem;
}

.section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 620px;
    line-height: 1.72;
    font-weight: 500;
    margin-bottom: 3rem;
}

/* ===== SERVICES LIST ===== */
.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 820px;
}

.services-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--body-bg);
    border: 1px solid var(--border-card);
    border-left: 4px solid var(--lime);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.services-list li:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(2px);
}

.svc-num {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--lime);
    text-transform: uppercase;
    flex-shrink: 0;
    margin-top: 0.25rem;
    min-width: 2rem;
}

.services-list h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.services-list p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.62;
    font-weight: 500;
}

/* ===== PAGE HEADER (interior pages) ===== */
.page-header {
    background: linear-gradient(140deg, var(--forest-dark) 0%, var(--forest-700) 100%);
    padding: 8rem 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(139,195,74,0.09) 0%, transparent 58%);
}

.page-header-inner { position: relative; z-index: 2; }

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.page-header .subtitle {
    font-size: 1.05rem;
    color: var(--text-light-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 500;
}

.page-content { padding: 4.5rem 0; }

/* ===== ABOUT ===== */
.about-body {
    max-width: 820px;
    margin: 0 auto;
}

.about-body p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.82;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.partners-block {
    margin-top: 3rem;
    padding-top: 2.25rem;
    border-top: 1px solid var(--border);
}

.partners-block .block-label {
    font-family: 'Quicksand', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 0.65rem;
}

.partners-block p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 600;
}

/* ===== CONTACT ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
}

.contact-item {
    margin-bottom: 1.4rem;
}

.contact-item .ci-label {
    font-family: 'Quicksand', system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 0.28rem;
}

.contact-item a,
.contact-item p {
    font-size: 0.965rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-decoration: none;
    display: block;
    line-height: 1.55;
    transition: color 0.2s;
}

.contact-item a:hover { color: var(--forest); }

/* ===== FORM ===== */
.form-card {
    background: var(--white);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

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

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--body-bg);
    color: var(--text-dark);
    font-family: 'Quicksand', system-ui, sans-serif;
    font-size: 0.925rem;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}

.form-input:focus {
    border-color: var(--forest);
    background: var(--white);
}

.submit-btn {
    background: var(--lime);
    color: var(--forest-dark);
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Quicksand', system-ui, sans-serif;
    font-size: 0.975rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.submit-btn:hover {
    background: var(--lime-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(139,195,74,0.28);
}

/* ===== FOOTER ===== */
footer {
    background: var(--forest-dark);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-light);
    display: block;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

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

.footer-links a {
    color: rgba(245,249,243,0.42);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: color 0.2s;
}

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

.footer-right { text-align: right; }

.footer-right p {
    color: rgba(245,249,243,0.32);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.footer-right a {
    color: rgba(245,249,243,0.48);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-right a:hover { color: var(--lime); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--forest-dark);
        padding: 1rem 1.5rem 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.06);
        gap: 0.5rem;
    }

    .nav-menu.open { display: flex; }
    .mobile-toggle { display: block; }

    .hero-wordmark { font-size: 2.8rem; }
    .page-header h1 { font-size: 2rem; }
    .section h2 { font-size: 1.8rem; }

    .services-list li { padding: 1.25rem 1.5rem; }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer-inner { flex-direction: column; }
    .footer-right { text-align: left; }
}
