:root {
    --green: #00783c;
    --green-dark: #005f2f;
    --orange: #ff840c;
    --ink: #14241c;
    --muted: #5f6d66;
    --line: #dbe7e1;
    --soft: #f5faf7;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
}

.page-header {
    min-height: 88px;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: linear-gradient(105deg, #006331, #00783c 74%, #8bd7e7 135%);
}

.brand img {
    width: 178px;
    display: block;
}

nav {
    display: flex;
    gap: 34px;
    align-items: center;
}

nav a {
    position: relative;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;
    height: 4px;
    background: var(--orange);
}

.access-link {
    padding: 12px 22px;
    color: var(--green-dark);
    background: #fff;
    border-radius: 9px;
}

.hero {
    min-height: 380px;
    padding: 64px 8%;
    display: grid;
    grid-template-columns: 1fr 52%;
    gap: 48px;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(90deg, #eef5ec, #fbfbf6);
}

.hero-copy span {
    color: var(--green);
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 560px;
    margin: 14px 0;
    color: var(--green-dark);
    font-size: clamp(44px, 5.6vw, 66px);
    line-height: 1.08;
}

.hero p,
.people > p,
.person p,
.timeline-section aside p,
.timeline p {
    color: var(--muted);
    line-height: 1.7;
}

.hero a,
.person a,
.timeline-section aside a {
    display: inline-flex;
    margin-top: 18px;
    padding: 12px 22px;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    background: var(--green);
    border-radius: 8px;
}

.hero img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 160px 0 0 160px;
    filter: sepia(.25) saturate(.85);
}

.people,
.timeline-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 52px 24px;
}

.people h2 {
    margin: 0 0 6px;
    color: var(--green-dark);
    font-size: 32px;
}

.person {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 260px 1fr;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 65, 32, .08);
}

.person img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.person div {
    padding: 30px 42px;
}

.person span {
    float: left;
    width: 54px;
    height: 54px;
    margin: 0 22px 18px 0;
    display: grid;
    place-items: center;
    color: var(--green);
    font-size: 26px;
    background: #e5f3eb;
    border-radius: 50%;
}

.person h3 {
    margin: 0;
    color: var(--green);
    font-size: 26px;
}

.person strong {
    display: block;
    margin: 4px 0 14px;
}

.person a,
.timeline-section aside a {
    color: var(--green);
    background: #fff;
    border: 1px solid var(--green);
}

.timeline-section {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: stretch;
}

.timeline-section aside {
    padding: 32px;
    color: #fff;
    background: linear-gradient(145deg, #006f38, #024724);
    border-radius: 12px;
}

.timeline-section aside span {
    color: rgba(255, 255, 255, .45);
    font-size: 42px;
}

.timeline-section aside h2,
.timeline-section aside p {
    color: #fff;
}

.timeline-section aside h2 {
    font-size: 25px;
}

.timeline-section aside a {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .32);
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    padding: 70px 22px 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 65, 32, .08);
}

.timeline::before {
    content: "";
    position: absolute;
    top: 82px;
    left: 42px;
    right: 42px;
    height: 1px;
    background: var(--line);
}

.timeline article {
    position: relative;
    text-align: center;
}

.timeline article::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    margin: 6px auto 22px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 6px #e7f4ed;
}

.timeline strong {
    color: var(--green);
    font-size: 18px;
}

.timeline p {
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 9px;
}

footer {
    padding: 16px;
    color: #fff;
    text-align: center;
    background: var(--green-dark);
}

@media (max-width: 850px) {
    .page-header,
    nav {
        flex-direction: column;
        padding: 18px;
    }

    .hero,
    .person,
    .timeline-section,
    .timeline {
        grid-template-columns: 1fr;
    }

    .hero img {
        border-radius: 18px;
    }

    .timeline::before {
        display: none;
    }
}
