/* ==============================
   RESET + BASE
============================== */
*,
*::before,
*::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    background: #f6f7f4;
    color: #131513;
}

img, svg {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

/* ==============================
   VARIABLES
============================== */
:root {
    --brand: #3e7326;
    --brand-ink: #345627;
    --brand-warm: #c9a069;
    --ink: #131513;
    --muted: #6b7265;
    --bg: #f6f7f4;
    --card: #ffffff;
    --radius: 10px;
    --shadow-1: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-2: 0 4px 16px rgba(0, 0, 0, 0.08);
    --transition: 0.2s ease;
}

/* ==============================
   UTILITIES
============================== */
.container {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.section {
    padding: 5rem 0;
}

.section.alt {
    background: #eef2ea;
}

.section-head {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-head h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-head p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--muted);
}

.muted {
    color: var(--muted);
}

.full-img {
    width: 100%;
    border-radius: var(--radius);
    margin-top: 1rem;
}

.status-message {
    display: inline-flex;
    align-items: center;
    color: #2ecc71; /* Green text */
    font-weight: 400;
    margin-top: 0.5rem;
    margin-left: 2%;
}

.status-message::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 10px;
    margin-right: 8px;
    border-radius: 50%;
    background-color: #2ecc71; /* Green dot */
    box-shadow: 0 0 8px #2ecc71; /* Glow effect */
}


/* ==============================
   HEADER
============================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    height: 60px;
    border-bottom: 1px solid #3d6130;
}

.header-wrap {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mark {
    background: var(--brand);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    font-weight: 800;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav a {
    font-weight: 500;
    color: var(--ink);
    transition: color var(--transition);
}

.site-nav a:hover {
    color: var(--brand);
}

/* ==============================
   HERO (Simplified)
============================== */
.hero {
    padding: 7rem 0 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #b5bba8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center top, rgba(62, 115, 38, 0.08), transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
}

.hero-copy {
    max-width: 700px;
}

.hero-copy .eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.75rem;
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--brand-ink);
}

.hero-copy p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 600px) {
    .hero {
        padding: 5rem 1.5rem;
    }
    .hero-copy h1 {
        font-size: 2rem;
    }
    .hero-copy p {
        font-size: 1rem;
    }
}


/* ==============================
   CARDS GRID
============================== */
.cards-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-1);
    border: 1px solid #e8eee4;
}

.card h3 {
    margin-top: 0.5rem;
}

/* ==============================
   DEVELOPMENTS
============================== */
.dev-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.dev-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid #e2e7de;
    box-shadow: var(--shadow-1);
}

.dev-card .tag {
    display: inline-block;
    font-size: 0.75rem;
    color: #fff;
    background: var(--brand);
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
    margin-bottom: 0.5rem;
}

.dev-card h3 {
    margin: 0.3rem 0 0.6rem;
    font-size: 1.1rem;
}

/* ==============================
   BUTTONS
============================== */
.btn {
    display: inline-block;
    border-radius: var(--radius);
    font-weight: 600;
    padding: 0.6rem 1rem;
    text-align: center;
    transition: all var(--transition);
    color: white;
}

.btn--solid {
    background: var(--brand);
    color: white;
}

.btn--solid:hover {
    background: #4a5a30;
}

.btn--ghost {
    border: 1px solid var(--brand);
    color: black;
}

.btn--ghost:hover {
    background: var(--brand);
    color: white;
}

.btn--invert {
    background: var(--brand-ink);
    color: white;
    border: 1px solid #1c2814;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 18px rgba(34, 48, 28, 0.12);
}

.btn--invert:hover {
    background: #1a2a12;
}

/* ==============================
   FOOTER
============================== */
.site-footer {
    margin-top: auto;
    background: #e9efe6;
    font-size: 0.95rem;
    color: #1a1f16;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding: 3rem 1rem 2rem;
    align-items: start;
}

.logo-sm {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--brand) 0%, #3f4c2a 100%);
    color: white;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.foot-brand .muted {
    color: var(--muted);
    line-height: 1.5;
    max-width: 30ch;
}

.foot-nav h4,
.foot-cta h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--brand-ink);
}

.foot-nav a {
    display: block;
    margin-bottom: 0.4rem;
    opacity: 0.88;
    transition: transform var(--transition), opacity var(--transition);
}

.foot-nav a:hover {
    opacity: 1;
    transform: translateX(2px);
    color: var(--brand);
}

.foot-cta .muted {
    color: var(--muted);
    margin-bottom: 1rem;
}

.legal-bar {
    border-top: 1px solid rgba(34, 48, 28, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.9));
    padding: 1rem 1.25rem;
    text-align: center;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
    }

    .site-nav {
        display: none; /* JS will toggle this */
    }

    .nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .nav-toggle .bar {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--ink);
        margin: 4px 0;
    }
}

/* ==============================
   TIMELINE STYLE (for Dev Sections)
============================== */
.timeline {
    counter-reset: step;
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--brand);
}

.timeline li {
    position: relative;
    padding-left: 1.5rem;
}

.timeline li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: -1.4rem;
    top: 0.2rem;
    width: 1.6rem;
    height: 1.6rem;
    background: var(--brand);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.timeline p {
    color: var(--muted);
}
/* Phase Blocks (for non-card style) */
.phase-block {
    background: var(--card);
    border: 1px solid #e2e7de;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-1);
}

.phase-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.phase-block p {
    color: var(--muted);
}


/* ==============================
   WHO WE ARE (Image Left)
============================== */
.who-we-are-section {
    background: #f1f4ec;
}

.who-we-are {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}

/* Image First */
.who-img {
    flex: 1 1 45%;
    order: 1;
    text-align: center;
}

.who-img img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

/* Text Second */
.who-text {
    flex: 1 1 50%;
    order: 2;
    padding-left: 1.5rem;
    border-left: 4px solid var(--brand);
}

.who-tag {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--brand);
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.who-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.who-text p {
    margin-bottom: 1rem;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.65;
}

.who-text strong {
    font-weight: 600;
    color: var(--brand-ink);
}

.who-text em {
    font-style: italic;
    color: var(--brand-warm);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .who-we-are {
        flex-direction: column;
    }

    .who-img,
    .who-text {
        order: unset;
        width: 100%;
        padding-left: 0;
        border-left: none;
    }

    .who-img {
        margin-bottom: 2rem;
    }
}

.logo-image {
    height: 50px;        /* adjust as needed */
    width: auto;
    display: block;
}

