* {
    box-sizing: border-box;
}

:root {
    font-size: 16px;

    color: #222222;
    font-family: "Trueno";
    font-weight: 300;

    --primary-rgb: 13, 122, 68;
    --primary: #0D7A44;

    --landing-percent: 40%;
    --form-percent: 40%;

    --site-padding: 4.375rem;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    height: 100%;

    margin: 0;
}

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

.link {
    color: var(--primary);
    font-weight: bold;
}

.link.link--inline {
    font-weight: 400;
}

img {
    width: 100%;
    height: 100%;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button {
    outline: inherit;
    border: inherit;
    color: inherit;
    background: inherit;
    text-align: inherit;

    cursor: pointer;
}

.text-center {
    text-align: center;
}

body {
    padding: 3.75rem var(--site-padding);
    height: 100%;
}

.sunset-notice {
    text-align: center;
}


footer {
    margin-top: auto;

    letter-spacing: 0.3125rem;
    font-size: 0.75rem;
    line-height: 1.25;
}

footer .logo {
    width: 220px;
}

footer .links {
    margin-top: 0.625rem;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
}

footer .contact {
    margin-top: 1rem;
}

footer .contact a {
    letter-spacing: 0.15625rem;
    text-decoration: underline;
}


@media screen and (min-width: 1920px) {
    :root {
        font-size: 18px;
    }
}

@media screen and (max-width: 1536px) {
    :root {
        font-size: 15px;
    }
}


@media screen and (min-width: 1024px) {
    .mobile-only {
        display: none !important;
    }
}


@media screen and (max-width: 1024px) {
    :root {
        --site-padding: 2rem;
    }

    body {
        padding: 0;
    }

    .desktop-only {
        display: none !important;
    }

    main {
        padding: 3rem var(--site-padding);
    }

    footer {
        padding: 3rem var(--site-padding);
    }

    footer .logo {
        display: none;
    }

    footer .links {
        justify-content: center;
        text-align: center;
    }

    footer .contact {
        text-align: center;
    }
}


@media screen and (max-width: 768px) {
    :root {
        font-size: 14px;
    }
}


@media screen and (max-width: 500px) {
    footer {
        padding: 2rem var(--site-padding);
    }

    footer .links {
        flex-direction: column;
        gap: 1rem;
    }

    footer .links .links__spacer {
        display: none;
    }
}


@media screen and (max-width: 425px) {
    :root {
        font-size: 13px;
    }
}


@media print {
    :root {
        --landing-percent: 100%;
    }

    body {
        background: #FFFFFF;
        text-align: center;
    }
}