/* =========================================
   RESET
   ========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* =========================================
   BODY
   ========================================= */

body {
    background: #570700;
    color: #f8f3e9;

    font-family: Georgia, "Times New Roman", serif;

    min-height: 100vh;
}


/* =========================================
   PAGE
   ========================================= */

.page {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    padding: 60px 25px 45px;
}


/* =========================================
   LOGO
   ========================================= */

.logo {
    display: block;

    width: 220px;
    max-width: 70%;
    height: auto;

    margin-bottom: 48px;
}


/* =========================================
   OPENING
   ========================================= */

.opening {
    margin-bottom: 62px;
}

.opening h1 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;
    font-weight: normal;

    letter-spacing: 3px;
    line-height: 1.3;

    color: #f8f3e9;
}


/* =========================================
   MAILING LIST
   ========================================= */

.mailing {
    width: 100%;
    max-width: 600px;

    margin-bottom: 48px;
}

.mailing h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;
    font-weight: normal;

    line-height: 1.2;

    letter-spacing: 0.3px;

    margin-bottom: 18px;
}

.mailing > p {
    max-width: 520px;

    margin: 0 auto;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;
    font-weight: normal;

    line-height: 1.7;

    color: #f8f3e9;
}


/* =========================================
   MAILCHIMP
   ========================================= */

#mc_embed_signup {
    width: 100%;

    margin: 26px auto 0;

    padding: 0;

    background: transparent;

    font-family: Georgia, "Times New Roman", serif;
}

#mc_embed_signup form {
    width: 100%;

    margin: 0;
    padding: 0;
}

#mc_embed_signup_scroll {
    width: 100%;
}


/* =========================================
   EMAIL + BUTTON
   ========================================= */

.email-row {
    display: flex;

    width: 100%;

    gap: 10px;
}


/* Email */

#mc_embed_signup input[type="email"] {
    flex: 1;

    width: auto;
    min-width: 0;

    height: 54px;

    margin: 0;
    padding: 0 18px;

    background: transparent;

    border: 1px solid rgba(248, 243, 233, 0.7);
    border-radius: 0;

    color: #f8f3e9;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: normal;

    outline: none;

    box-shadow: none;

    -webkit-appearance: none;
    appearance: none;
}

#mc_embed_signup input[type="email"]::placeholder {
    color: rgba(248, 243, 233, 0.72);
}

#mc_embed_signup input[type="email"]:focus {
    border-color: #f8f3e9;
}


/* Button */

#mc_embed_signup input[type="submit"] {
    flex: 0 0 165px;

    width: 165px;

    height: 54px;

    margin: 0;
    padding: 0 18px;

    background: #f8f3e9;

    border: 1px solid #f8f3e9;
    border-radius: 0;

    color: #570700;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    font-weight: bold;

    letter-spacing: 1.8px;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;

    -webkit-appearance: none;
    appearance: none;
}

#mc_embed_signup input[type="submit"]:hover {
    background: transparent;

    color: #f8f3e9;
}


/* =========================================
   HIDE MAILCHIMP DEFAULT ELEMENTS
   ========================================= */

#mc_embed_signup h2,
#mc_embed_signup label,
#mc_embed_signup .indicates-required {
    display: none !important;
}


/* =========================================
   MAILCHIMP ANTI-BOT FIELD
   ========================================= */

.mailchimp-hidden {
    position: absolute !important;

    left: -5000px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}


/* =========================================
   MAILCHIMP RESPONSES
   ========================================= */

#mce-responses {
    width: 100%;

    margin: 0;
    padding: 0;
}

#mc_embed_signup .response {
    width: 100%;

    margin: 14px 0 0;

    padding: 0;

    color: #f8f3e9;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================
   HIRING
   ========================================= */

.hiring {
    width: 100%;
    max-width: 600px;

    padding: 40px 45px;

    margin-bottom: 48px;

    background: #f8f3e9;

    color: #570700;
}

.hiring h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    font-weight: normal;

    line-height: 1.2;

    letter-spacing: 0.5px;

    margin-bottom: 18px;

    color: #570700;
}

.hiring p {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;

    line-height: 1.7;

    color: #570700;
}

.hiring p + p {
    margin-top: 19px;
}

.hiring a {
    color: #570700;

    text-decoration: underline;

    text-underline-offset: 4px;
}


/* =========================================
   FOOTER
   ========================================= */

footer {
    margin-top: auto;

    padding-top: 10px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;

    letter-spacing: 0.5px;

    opacity: 0.7;
}

footer a {
    color: #f8f3e9;

    text-decoration: none;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .page {
        padding: 45px 20px 35px;
    }


    /* Logo */

    .logo {
        width: 190px;

        margin-bottom: 40px;
    }


    /* Opening */

    .opening {
        margin-bottom: 52px;
    }

    .opening h1 {
        font-size: 18px;

        letter-spacing: 2.3px;
    }


    /* Mailing */

    .mailing {
        max-width: 450px;

        margin-bottom: 38px;
    }

    .mailing h2 {
        font-size: 29px;

        margin-bottom: 16px;
    }

    .mailing > p {
        font-size: 16px;

        line-height: 1.65;
    }


    /* Mobile Mailchimp */

    #mc_embed_signup {
        margin-top: 22px;
    }

    .email-row {
        flex-direction: column;

        gap: 10px;
    }

    #mc_embed_signup input[type="email"] {
        width: 100%;

        height: 52px;
    }

    #mc_embed_signup input[type="submit"] {
        width: 100%;

        height: 52px;

        flex: none;
    }


    /* Hiring */

    .hiring {
        padding: 32px 25px;

        margin-bottom: 40px;
    }

    .hiring h2 {
        font-size: 23px;

        margin-bottom: 16px;
    }

    .hiring p {
        font-size: 15.5px;

        line-height: 1.65;
    }

    .hiring p + p {
        margin-top: 18px;
    }


    /* Footer */

    footer {
        font-size: 12px;
    }
}