* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: #18261e;
    background: #f7f9f7;
    line-height: 1.6;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #e8eee9;
}

.nav-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-logo {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #166534;
    color: white;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 24px;
}

.brand strong {
    display: block;
    letter-spacing: .08em;
}

.brand small {
    color: #607067;
}

nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

nav a {
    font-size: 14px;
    font-weight: 600;
}

nav a:hover,
nav .active {
    color: #16803d;
}

.crm-button {
    background: #173d29;
    color: white !important;
    padding: 11px 18px;
    border-radius: 8px;
}


/* HERO */

.hero {
    padding: 105px 0;
    background:
        radial-gradient(circle at 80% 30%, #dbeee1, transparent 32%),
        linear-gradient(135deg, #f9fcfa, #edf6ef);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 80px;
    align-items: center;
}

.eyebrow {
    color: #188442;
    font-size: 12px;
    letter-spacing: .18em;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(45px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -.05em;
    margin: 0 0 25px;
}

.hero h1 span,
.page-hero h1 span {
    color: #16803d;
}

.hero-content > p {
    max-width: 650px;
    font-size: 19px;
    color: #526159;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 35px;
}

.button {
    display: inline-block;
    padding: 14px 23px;
    border-radius: 9px;
    font-weight: 700;
    transition: .2s;
}

.button:hover {
    transform: translateY(-2px);
}

.primary {
    background: #16803d;
    color: white;
}

.secondary {
    border: 1px solid #cad5cd;
    background: white;
}

.hero-card {
    background: #173d29;
    color: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(15,50,30,.16);
}

.hero-card-label {
    font-size: 12px;
    letter-spacing: .2em;
    opacity: .65;
}

.hero-card h2 {
    font-size: 34px;
    line-height: 1.15;
}

.hero-card p {
    color: #c4d8ca;
}

.stats {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 25px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.stats strong,
.stats span {
    display: block;
}

.stats strong {
    font-size: 23px;
}

.stats span {
    color: #9fbaa7;
    font-size: 12px;
}


/* CONTENT */

.section {
    padding: 95px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-heading h2 {
    font-size: clamp(34px,4vw,52px);
    line-height: 1.1;
    letter-spacing: -.035em;
    margin: 0 0 18px;
}

.section-heading p {
    color: #68766e;
    font-size: 18px;
}

.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.feature-card {
    padding: 32px;
    background: white;
    border: 1px solid #e5ece7;
    border-radius: 16px;
}

.feature-number {
    color: #16803d;
    font-weight: 800;
    font-size: 13px;
}

.feature-card h3 {
    font-size: 24px;
}

.feature-card p {
    color: #68766e;
}


/* MISSION */

.mission {
    background: #173d29;
    color: white;
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.light {
    color: #99d3ac;
}

.mission h2 {
    font-size: 42px;
    line-height: 1.15;
}

.mission-list > div {
    display: flex;
    gap: 25px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding: 18px 0;
}

.mission-list span {
    color: #8fcea4;
}

.mission-list p {
    margin: 0;
    font-size: 18px;
}


/* CTA */

.cta-box {
    background: #e6f3e9;
    padding: 45px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-box h3 {
    font-size: 27px;
    margin: 0;
}

.cta-box p {
    margin-bottom: 0;
    color: #637068;
}


/* CONTACT */

.contact-section {
    padding-top: 20px;
}

.contact-card {
    background: white;
    border: 1px solid #e5ece7;
    padding: 55px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-card h2 {
    font-size: 40px;
    margin: 0;
}

.contact-placeholder span,
.contact-placeholder strong {
    display: block;
}

.contact-placeholder span {
    color: #7a867f;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 15px;
}


/* RECRUITMENT */

.page-hero {
    padding: 100px 0 80px;
    background: #eef6f0;
}

.page-hero p {
    font-size: 19px;
    color: #5d6c63;
    max-width: 650px;
}

.jobs {
    display: grid;
    gap: 18px;
}

.job-card {
    padding: 30px;
    background: white;
    border: 1px solid #e2e9e4;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
}

.job-type {
    color: #188442;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .15em;
}

.job-card h3 {
    font-size: 24px;
    margin: 8px 0;
}

.job-card p {
    color: #68766e;
}

.job-meta {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.job-meta span {
    background: #f0f5f1;
    padding: 7px 11px;
    border-radius: 20px;
    font-size: 12px;
}

.apply-button {
    grid-column: 1/-1;
    justify-self: start;
    border: 0;
    background: #e5eae6;
    color: #6b756e;
    padding: 11px 17px;
    border-radius: 7px;
}


/* CRM */

.login-page {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: 80px 20px;
}

.login-card {
    width: min(480px,100%);
    background: white;
    border: 1px solid #e4ebe6;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 70px rgba(25,60,38,.08);
}

.large {
    width: 65px;
    height: 65px;
    margin: 0 auto 25px;
}

.login-card h1 {
    font-size: 38px;
    margin: 5px;
}

.coming-soon {
    margin: 30px 0;
    padding: 20px;
    background: #f0f6f2;
    border-radius: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}


/* FOOTER */

footer {
    background: #102d1e;
    color: white;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-brand {
    font-size: 25px;
    font-weight: 800;
}

footer p,
footer a {
    color: #aebfb4;
}

footer a {
    display: block;
    margin: 7px 0;
}

footer h4 {
    margin-top: 0;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px;
    text-align: center;
    color: #789082;
    font-size: 12px;
}


/* MOBILE */

@media (max-width: 850px) {

    nav a:not(.crm-button) {
        display: none;
    }

    .brand small {
        display: none;
    }

    .hero {
        padding: 65px 0;
    }

    .hero-grid,
    .mission-grid,
    .contact-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 47px;
    }

    .mission h2 {
        font-size: 32px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-card {
        grid-template-columns: 1fr;
    }

    .job-meta {
        flex-wrap: wrap;
    }

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

}   /* close @media (max-width: 850px) */

/* KOHIKMAH BRAND OVERRIDES */

:root {
    --navy: #082b55;
    --gold: #d6a51e;
    --light-gold: #f1cf65;
    --white: #ffffff;
    --soft-bg: #f7f7f4;
}

body {
    background: var(--soft-bg);
    color: var(--navy);
}

.navbar {
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid #e5e5e5;
}

.brand-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    object-position: center;
}

.brand {
    gap: 10px;
}

.nav-container {
    min-height: 76px;
}

.brand strong {
    font-size: 15px;
}

.brand small {
    font-size: 12px;
    line-height: 1.3;
}



.footer-logo {
    width: 110px;
    height: auto;
    background: white;
    padding: 8px;
    border-radius: 12px;
}

nav a:hover,
nav .active {
    color: var(--gold);
}

.crm-button {
    background: var(--navy);
    color: white !important;
}

.eyebrow {
    color: var(--gold);
}

.hero {
    background:
        radial-gradient(circle at 85% 20%, rgba(214,165,30,.22), transparent 30%),
        linear-gradient(135deg, #ffffff, #f7f1df);
}

.hero h1 span,
.page-hero h1 span {
    color: var(--gold);
}

.primary {
    background: var(--gold);
    color: var(--navy);
}

.secondary {
    border: 1px solid #d5d5d5;
    color: var(--navy);
}

.hero-card,
.mission,
footer {
    background: var(--navy);
}

.feature-number,
.job-type {
    color: var(--gold);
}

.recruitment-banner {
    padding: 35px 0 10px;
    background: #ffffff;
}

.recruitment-cover {
    width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(8,43,85,.12);
}

.recruitment-cta {
    margin-top: 50px;
    padding: 45px;
    text-align: center;
    background: var(--navy);
    color: white;
    border-radius: 18px;
}

.recruitment-cta h2 {
    font-size: 36px;
    margin-top: 0;
}

.recruitment-cta p {
    color: #d9e3ee;
}

.recruitment-cta .button {
    margin: 10px 6px 0;
}


