:root {
    --green: #73882b;
    --green-dark: #52681f;
    --black: #232321;
    --text: #282725;
    --muted: #5e5b55;
    --cream: #f3f4ed;
    --white: #fff;
    --line: #d9d9d2
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.5;
    font-size: 16px
}

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

a {
    color: inherit
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 99;
    min-height: 92px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 10px 28px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .05)
}

.brand {
    width: 180px;
    flex: 0 0 auto
}

.mainnav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 22px;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap
}

.mainnav a {
    text-decoration: none
}

.mainnav a:hover {
    color: var(--green)
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: var(--green);
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700
}

.hero {
    position: relative;
    min-height: 560px;
    background-image: url("hero-bg.jpg");
    background-size: cover;
    background-position: left center;
    background-attachment: fixed
}

.hero-overlay {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        90deg,
        rgba(8, 30, 13, .15) 0%,
        rgba(6, 45, 16, .78) 52%,
        rgba(6, 45, 16, .75) 100%
    )
}

.hero-content {
    width: min(1180px, 92vw);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 0 40px;
    color: #fff;
    text-align: center;
    transform: translateX(18%)
}

.hero-logo {
    width: min(430px, 65vw);
    /*filter: brightness(0) invert(1) */
}

.hero-subline {
    font-family: 'Segoe Print', 'Comic Sans MS', cursive;
    font-size: clamp(2rem, 4vw, 4.4rem);
    line-height: 1;
    margin: 4px 0 48px;
    font-weight: 700;
    transform: rotate(-5deg);
    text-shadow: 0 4px 20px rgba(0, 0, 0, .35)
}

.claim-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 38px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .04em
}

.claim-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.leaf-icon {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 15px;
    border: 3px solid var(--green);
    border-radius: 100% 0 100% 0;
    transform: rotate(-30deg)
}

.leaf-icon:after {
    content: "";
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--green);
    left: 15px;
    top: 12px;
    transform: rotate(35deg)
}

.section-divider {
    position: relative;
    z-index: 2;
    height: 44px;
    margin-top: -22px;
    background: #fff;
    clip-path: polygon(0 34%, 50% 0, 100% 34%, 100% 100%, 0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--green)
}

.section-divider span {
    position: absolute;
    top: -2px;
    font-size: 32px;
    color: #fff
}

.section-divider img,
.mini-divider img {
    width: 130px;
    opacity: .9
}

.mini-divider {
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3
}

.section {
    padding: 58px max(34px, calc((100vw - 1180px)/2))
}

.white {
    background: #fff
}

.cream {
    background: linear-gradient(90deg, #f9faf4, #eff2e8)
}

.split {
    display: grid;
    grid-template-columns: 310px minmax(0, 780px);
    justify-content: center;
    gap: 70px;
    align-items: center
}

.split.reverse {
    grid-template-columns: minmax(0, 760px) 310px
}

.section-media {
    display: flex;
    justify-content: center;
    align-items: center
}

.hand-icon {
    width: 230px
}

.apple-icon {
    width: 255px
}

.section-text {
    max-width: 800px
}

h2 {
    margin: 0 0 22px;
    color: var(--green);
    font-family: 'Segoe Print', 'Comic Sans MS', cursive;
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    line-height: 1;
    font-weight: 900;
    transform: rotate(-1deg)
}

h2 span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: .7em;
    vertical-align: .08em
}

p {
    margin: 0 0 12px
}

ul {
    margin: 8px 0 0 22px;
    padding: 0
}

li {
    margin: 0 0 8px
}

.center {
    text-align: center
}

.process-row {
    margin: 32px auto 24px;
    max-width: 1150px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 18px;
    align-items: start
}

.process-card {
    position: relative;
    color: var(--black);
    padding: 6px 8px
}

.process-card svg {
    width: 96px;
    height: 68px;
    color: #33322e;
    margin: 0 auto 10px
}

.process-card h3 {
    font-size: 18px;
    margin: 0 0 10px
}

.process-card p {
    font-size: 14px;
    line-height: 1.35
}

.number {
    position: absolute;
    top: 0;
    left: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-weight: 900;
    display: grid;
    place-items: center
}

.arrow {
    color: var(--green);
    font-size: 54px;
    line-height: 1.2;
    margin-top: 42px
}

.process-footer {
    font-size: 17px
}

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

.columns article {
    padding: 0 24px;
    border-right: 1px solid #bfc0b8
}

.columns article:last-child {
    border-right: 0
}

.resources {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 22px 0;
    color: var(--green);
    text-align: center;
    font-size: 28px
}

.resources small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px
}

.tiny-arrow {
    width: 110px;
    margin: 34px auto 0
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 38px;
    align-items: start
}

.bottom-grid article {
    border-right: 1px solid #d0d0c8;
    padding-right: 34px
}

.bottom-grid article:last-child {
    border-right: 0;
    padding-right: 0
}

.support-item {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 16px;
    align-items: center;
    margin: 24px 0
}

.support-item svg {
    width: 62px;
    height: 62px;
    fill: var(--green)
}

form {
    display: grid;
    gap: 14px;
    margin-top: 22px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

input,
textarea {
    width: 100%;
    border: 1px solid #d6d6d2;
    padding: 14px 16px;
    font: inherit;
    background: #fff
}

textarea {
    min-height: 112px;
    resize: vertical
}

button[type=submit] {
    border: 0;
    background: var(--green-dark);
    color: #fff;
    padding: 14px;
    font-weight: 800;
    cursor: pointer
}

button[type=submit]:hover {
    background: var(--green)
}

.footer {
    background: #2f2f2d;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 22px 28px;
    font-size: 14px
}

.footer a {
    color: #fff
}

.backtop {
    position: fixed;
    right: 24px;
    bottom: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .2)
}

.legal {
    max-width: 980px;
    margin: 70px auto;
    padding: 0 28px
}

.legal-card {
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    padding: 42px;
    border-radius: 20px
}

.legal h1 {
    color: var(--green);
    font-size: 3rem;
    margin-top: 0
}

@media(max-width:1180px) {
    .topbar {
        height: auto;
        align-items: flex-start;
        flex-wrap: wrap
    }

    .mainnav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow: auto;
        padding-bottom: 8px
    }

    .hero-content {
        transform: none
    }
}

@media(max-width:900px) {
    .menu-toggle {
        display: block
    }

    .topbar {
        align-items: center
    }

    .mainnav {
        display: none;
        position: absolute;
        top: 82px;
        left: 18px;
        right: 18px;
        background: #fff;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
        border-radius: 18px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        overflow: visible
    }

    .mainnav.open {
        display: flex
    }

    .hero,
    .hero-overlay {
        min-height: 500px;
        background-attachment: scroll
    }

    .claim-row {
        gap: 14px;
        font-size: 13px
    }

    .split,
    .split.reverse,
    .columns,
    .bottom-grid {
        grid-template-columns: 1fr
    }

    .split {
        gap: 25px
    }

    .columns article,
    .bottom-grid article {
        border-right: 0;
        border-bottom: 1px solid #d0d0c8;
        padding: 0 0 30px
    }

    .columns article:last-child,
    .bottom-grid article:last-child {
        border-bottom: 0
    }

    .process-row {
        grid-template-columns: 1fr
    }

    .arrow {
        margin: 0;
        transform: rotate(90deg);
        font-size: 38px
    }
}

@media(max-width:560px) {
    .topbar {
        padding: 8px 16px
    }

    .brand {
        width: 135px
    }

    .section {
        padding: 48px 22px
    }

    .hero,
    .hero-overlay {
        min-height: 430px
    }

    .hero-subline {
        margin-bottom: 28px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .legal-card {
        padding: 26px
    }
}