:root {
    --green: #10251b;
    --green-2: #183828;
    --gold: #f5b82e;
    --gold-2: #d99a12;
    --cream: #f6f1e6;
    --text: #26332c;
    --muted: #6e776f;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7
}

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

.container {
    width: min(1160px, 92%);
    margin: auto
}

.topbar {
    background: #0a1710;
    color: #dce9df;
    font-size: .9rem
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(16, 37, 27, .94);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18)
}

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

.brand img {
    height: 38px;
    max-width: 230px;
    object-fit: contain
}

.menu {
    display: flex;
    gap: 28px;
    align-items: center
}

    .menu a {
        text-transform: uppercase;
        color: var(--white);
        font-size: .84rem;
        font-weight: 700;
        letter-spacing: .08em;
        position: relative
    }

        .menu a:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: .25s
        }

        .menu a:hover:after {
            width: 100%
        }

#menu-toggle {
    display: none
}

.hamburger {
    display: none;
    cursor: pointer
}

    .hamburger span {
        display: block;
        width: 28px;
        height: 3px;
        background: #fff;
        margin: 5px 0;
        border-radius: 5px
    }

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(120deg, rgba(16, 37, 27, .98), rgba(16, 37, 27, .65)), url('images/banner-main.jpg') center/cover no-repeat;
    overflow: hidden
}

    .hero:before {
        content: "";
        position: absolute;
        right: -160px;
        top: 80px;
        width: 520px;
        height: 520px;
        border: 1px solid rgba(245, 184, 46, .25);
        border-radius: 50%
    }

.hero-content {
    position: relative;
    color: #fff;
    max-width: 780px
}

.eyebrow,
.section-title span {
    display: inline-block;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6.6rem);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -.05em;
    margin-bottom: 26px
}

.hero p {
    font-size: 1.22rem;
    max-width: 640px;
    color: #edf3ef;
    margin-bottom: 34px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .82rem;
    letter-spacing: .08em;
    transition: .25s
}

    .btn.primary {
        background: var(--gold);
        color: #152218;
        box-shadow: 0 16px 35px rgba(245, 184, 46, .25)
    }

        .btn.primary:hover {
            background: #ffc84b;
            transform: translateY(-3px)
        }

    .btn.ghost {
        border: 1px solid rgba(255, 255, 255, .4);
        color: #fff
    }

        .btn.ghost:hover {
            background: #fff;
            color: var(--green)
        }

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: -80px;
    position: relative;
    z-index: 2
}

.card {
    background: #fff;
    padding: 36px 30px;
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(20, 35, 28, .14);
    transition: .25s
}

    .card.featured {
        background: var(--green);
        color: #fff
    }

    .card img {
        width: 52px;
        height: 52px;
        object-fit: contain;
        margin-bottom: 24px
    }

    .card h3 {
        text-transform: uppercase;
        font-size: 1.05rem;
        line-height: 1.35;
        margin-bottom: 10px
    }

    .card p {
        color: var(--muted);
        margin-bottom: 16px
    }

    .card.featured p {
        color: #dbe6df
    }

    .card a {
        color: var(--gold);
        font-weight: 800;
        text-transform: uppercase;
        font-size: .8rem
    }

    .card:hover {
        transform: translateY(-8px)
    }

.section {
    padding: 105px 0
}

.section-title {
    margin-bottom: 42px
}

    .section-title h2 {
        font-size: clamp(2rem, 4vw, 3.4rem);
        line-height: 1.05;
        color: var(--green);
        letter-spacing: -.04em
    }

    .section-title.centered {
        text-align: center;
        max-width: 760px;
        margin-inline: auto
    }

    .section-title.light h2,
    .section-title.light p {
        color: #fff
    }

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    align-items: start
}

.about-copy {
    font-size: 1.02rem
}

    .about-copy p {
        margin-bottom: 18px
    }

.mission-box {
    background: #fff;
    border-left: 7px solid var(--gold);
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(20, 35, 28, .12)
}

    .mission-box h3 {
        color: var(--green);
        font-size: 1.4rem;
        margin: 18px 0 8px
    }

        .mission-box h3:first-child {
            margin-top: 0
        }

.process {
    background: radial-gradient(circle at top right, rgba(245, 184, 46, .18), transparent 36%), linear-gradient(135deg, var(--green), #09150f);
    color: #fff
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px
}

    .timeline article {
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 22px;
        padding: 26px;
        min-height: 290px
    }

    .timeline b {
        display: inline-grid;
        place-items: center;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--gold);
        color: #152218;
        margin-bottom: 20px
    }

    .timeline h3 {
        text-transform: uppercase;
        font-size: 1rem;
        line-height: 1.35;
        margin-bottom: 12px
    }

    .timeline p {
        color: #dce7df;
        font-size: .94rem
    }

.formats {
    background: var(--cream)
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.format-item {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(20, 35, 28, .1);
    border-top: 4px solid var(--gold)
}

    .format-item h3 {
        text-transform: uppercase;
        font-size: 1rem;
        line-height: 1.35;
        margin-bottom: 10px;
        color: var(--green)
    }

    .format-item p {
        color: var(--muted);
        font-size: .96rem;
        margin-bottom: 16px
    }

    .format-item a {
        font-weight: 800;
        color: var(--gold-2);
        text-transform: uppercase;
        font-size: .8rem
    }

.cta {
    background: linear-gradient(90deg, rgba(16, 37, 27, .88), rgba(16, 37, 27, .7)), url('images/banner-main.jpg') center/cover no-repeat;
    color: #fff;
    padding: 70px 0
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px
}

.cta h2 {
    font-size: 2.6rem;
    line-height: 1
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 30px
}

.contact-form,
.contact-info {
    background: #fff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(20, 35, 28, .1)
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        border: 1px solid #dfe5df;
        border-radius: 14px;
        padding: 15px 16px;
        margin-bottom: 14px;
        font: inherit;
        background: #fbfbf8
    }

    .contact-form textarea {
        height: 150px;
        resize: vertical
    }

    .contact-form button,
    .contact-form input[type=submit]
    {
        border: 0;
        background: var(--green);
        color: #fff;
        padding: 15px 24px;
        border-radius: 999px;
        font-weight: 800;
        text-transform: uppercase;
        cursor: pointer;
        margin-top: 10px;
    }

    .contact-info h3 {
        color: var(--green);
        margin: 16px 0 4px
    }

        .contact-info h3:first-child {
            margin-top: 0
        }

    .contact-info p {
        color: var(--muted)
    }

footer {
    background: #0a1710;
    color: #d7e2db;
    padding: 32px 0
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

    .footer-inner a {
        color: var(--gold);
    }

    .footer-inner a:hover {
        text-decoration:underline;
    }

footer img {
    height: 34px;
    max-width: 230px;
    object-fit: contain
}

@media (max-width:1000px) {

    .service-cards,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .timeline,
    .format-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-cards {
        margin-top: -40px
    }

    .hero {
        min-height: 640px
    }

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

@media (max-width:720px) {
    .topbar-inner {
        flex-direction: column;
        gap: 2px
    }

    .hamburger {
        display: block
    }

    .menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        background: var(--green);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 6%;
        box-shadow: 0 20px 40px rgba(0, 0, 0, .25)
    }

    #menu-toggle:checked ~ .menu {
        display: flex
    }

    .hero {
        min-height: 610px
    }

        .hero h1 {
            font-size: 3rem
        }

    .service-cards,
    .timeline,
    .format-grid {
        grid-template-columns: 1fr
    }

    .section {
        padding: 75px 0
    }

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