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

:root {
    --green: #496520;
    --green-dark: #2D3D12;
    --green-light: #EEF3E6;
    --green-border: #C5D4A8;
    --brown: #6B583C;
    --brown-light: #F5F0E8;
    --white: #FFFFFF;
    --bg: #F7F6F2;
    --text: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #888;
    --border: #E4E4DF;
    --shadow: 0 2px 16px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    z-index: 100;
}

.nav-logo {
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -0.3px;
}

.nav-logo .rootz {
    color: var(--brown);
}

.nav-logo .amp {
    color: var(--text-muted);
    margin: 0 2px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline {
    padding: 10px 22px;
    border: 1.5px solid var(--green);
    border-radius: 10px;
    color: var(--green);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    background: transparent;
}

.btn-outline:hover {
    background: var(--green-light);
}

.btn-primary {
    padding: 10px 22px;
    background: var(--green);
    border: 1.5px solid var(--green);
    border-radius: 10px;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-primary-lg {
    padding: 16px 40px;
    background: var(--green);
    border: none;
    border-radius: 12px;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary-lg:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(73,101,32,0.35);
}

.btn-outline-lg {
    padding: 16px 40px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 12px;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

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

/* ── CONTAINER ── */
.container {
    max-width: 1180px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 900;
    color: var(--text);
    line-height: 1.13;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.75;
}

/* ── FOOTER ── */
footer {
    background: #181818;
    color: rgba(255,255,255,0.55);
    padding: 64px 48px 40px;
}

.footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-name {
    font-size: 19px;
    font-weight: 900;
    color: white;
    margin-bottom: 14px;
}

.footer-brand-name span {
    color: var(--green);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 800;
    color: white;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1180px;
    margin: 32px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* ── HAMBURGER ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 20px 28px;
    gap: 4px;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 13px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 16px;
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: var(--bg);
}

.mobile-menu-cta {
    background: var(--green) !important;
    color: white !important;
    text-align: center;
    margin-top: 10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1114px) {
    nav {
        padding: 0 24px;
        height: 72px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-menu {
        top: 72px;
    }

    footer {
        padding: 52px 24px 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .btn-primary-lg,
    .btn-outline-lg {
        padding: 14px 30px;
        font-size: 15px;
    }
}