.newsletter-page {
    background: var(--cream);
}

.newsletter-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    position: relative;
}

.newsletter-hero {
    background: var(--chocolate);
    color: var(--paper);
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    margin: 0 auto;
    max-width: var(--content-width);
    min-height: 520px;
}

.newsletter-hero__copy {
    align-self: center;
    padding: clamp(58px, 8vw, 112px) var(--page-padding);
}

.newsletter-hero h1 {
    font-size: clamp(76px, 9vw, 142px);
    line-height: .78;
    margin: 24px 0 38px;
}

.newsletter-hero__copy > p:last-child {
    color: rgb(255 248 237 / 78%);
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.55;
    max-width: 700px;
}

.newsletter-hero__aside {
    align-content: center;
    background: var(--cocoa);
    display: grid;
    padding: 54px;
}

.newsletter-hero__aside span {
    color: rgb(239 189 102 / 18%);
    font-family: var(--serif);
    font-size: clamp(150px, 18vw, 290px);
    line-height: .65;
}

.newsletter-hero__aside p {
    color: var(--gold);
    font-family: var(--serif);
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.05;
    margin: -10px 0 0;
}

.newsletter-signup {
    display: grid;
    gap: clamp(50px, 8vw, 130px);
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    margin: 0 auto;
    max-width: var(--content-width);
    padding: clamp(72px, 9vw, 130px) var(--page-padding);
}

.newsletter-signup h2 {
    font-size: var(--fs-h2);
    line-height: .95;
    margin: 18px 0 28px;
}

.newsletter-signup__intro > p:last-child {
    color: rgb(45 28 21 / 72%);
    font-size: 18px;
    line-height: 1.7;
    max-width: 570px;
}

.newsletter-signup__form {
    background: var(--paper);
    border-top: 4px solid var(--gold);
    padding: clamp(28px, 5vw, 52px);
}

.newsletter-signup form {
    display: grid;
    gap: 24px;
}

.newsletter-email {
    display: grid;
    font-size: 12px;
    font-weight: 700;
    gap: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.newsletter-email input {
    background: white;
    border: 1px solid rgb(45 28 21 / 24%);
    border-radius: 0;
    color: var(--ink);
    font: 17px var(--sans);
    padding: 16px;
    text-transform: none;
}

.newsletter-email input:focus {
    border-color: var(--terracotta);
    outline: 2px solid rgb(157 64 42 / 16%);
}

.newsletter-consent {
    align-items: flex-start;
    color: rgb(45 28 21 / 72%);
    display: grid;
    font-size: 13px;
    gap: 12px;
    grid-template-columns: 20px 1fr;
    line-height: 1.55;
}

.newsletter-consent input {
    accent-color: var(--terracotta);
    height: 18px;
    margin: 2px 0 0;
    width: 18px;
}

.newsletter-signup__form .button {
    border: 0;
    cursor: pointer;
    justify-self: start;
}

.newsletter-privacy {
    border-top: 1px solid var(--line);
    color: rgb(45 28 21 / 58%);
    font-size: 11px;
    line-height: 1.65;
    margin: 30px 0 0;
    padding-top: 20px;
}

.newsletter-privacy a {
    color: inherit;
}

.newsletter-notice {
    border-left: 3px solid var(--sage);
    line-height: 1.65;
    margin-bottom: 26px;
    padding: 16px 18px;
}

.newsletter-notice--success {
    background: rgb(99 112 91 / 12%);
}

.newsletter-notice--error {
    background: rgb(157 64 42 / 10%);
    border-left-color: var(--terracotta);
}

.newsletter-notice strong,
.newsletter-notice p {
    display: block;
    margin: 0;
}

.newsletter-trap {
    height: 0;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

@media (max-width: 820px) {
    .newsletter-hero,
    .newsletter-signup {
        grid-template-columns: 1fr;
    }

    .newsletter-hero__aside {
        display: none;
    }

    .newsletter-signup {
        gap: 40px;
    }
}
