:root {
    --sage: #a5b9ae;
    --brown: #8c4431;
    --dark: #2e2e2d;
    --cream: #f5f3ed;
    --line: #ddd9d0;
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--dark);
    font: 16px/1.65 Avenir, "Avenir Next", Arial, sans-serif
}

a {
    color: inherit
}

.nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #f5f3edf5;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px max(24px, calc((100% - var(--max))/2))
}

.brand {
    font-weight: 800;
    text-decoration: none
}

.links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0
}

.links a {
    text-decoration: none;
    font-weight: 700
}

.links a:hover {
    color: var(--brown)
}

.hero {
    background: linear-gradient(#2e2e2da8, #2e2e2db8), url("background.jpg") center/cover;
    color: white
}

.wrap {
    max-width: var(--max);
    margin: auto;
    padding: 90px 28px
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.03;
    max-width: 850px;
    margin: 12px 0
}

.eyebrow {
    color: var(--sage);
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase
}

.lead {
    font-size: 1.25rem;
    max-width: 780px
}

.btn {
    display: inline-block;
    background: var(--brown);
    color: white;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 5px;
    font-weight: 800;
    margin-top: 20px
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 0 0 18px
}

.intro {
    max-width: 800px;
    margin-bottom: 40px
}

.intro p,
.copy p {
    color: #50504d
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.card {
    background: white;
    border: 1px solid var(--line);
    border-top: 5px solid var(--sage);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 8px 28px #0000000d
}

.card h3 {
    font-size: 1.45rem
}

.card p,
.card li {
    color: #50504d
}

.band {
    background: var(--sage)
}

.band .wrap {
    padding-top: 78px;
    padding-bottom: 78px
}

.experience {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 60px;
    align-items: center
}

.stat {
    font-size: 6rem;
    font-weight: 800;
    color: var(--brown);
    line-height: 1
}

.why {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.why article {
    border-top: 1px solid var(--line);
    padding: 25px 0
}

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

.step {
    border-top: 1px solid #0002;
    padding-top: 18px
}

.step span {
    color: var(--brown);
    font-weight: 800
}

.cta {
    background: var(--dark);
    color: white;
    text-align: center
}

.footer {
    background: #232322;
    color: #bbb;
    text-align: center;
    padding: 25px
}

.menu {
    display: none
}

@media(max-width:800px) {
    .links.open {
        display: flex
    }

    .links {
        display: none
    }

    .menu {
        display: block;
        border: 0;
        background: none;
        font-size: 24px
    }

    .grid,
    .experience,
    .why,
    .steps {
        grid-template-columns: 1fr
    }

    .wrap {
        padding: 60px 24px
    }

    .stat {
        font-size: 4.5rem
    }
}