.contact-wrap {
    max-width: 1380px;
    margin-inline: auto;
    padding-inline: var(--pad)
}

.contact-intro {
    padding-top: 165px;
    padding-bottom: 75px
}

.contact-intro h1 {
    font-size: clamp(46px, 6.8vw, 96px);
    line-height: 1.08;
    letter-spacing: -.055em;
    font-weight: 400;
    margin: 28px 0;
    white-space: normal
}

.contact-intro h1 em {
    font-style: normal;
    color: var(--gold)
}

.contact-intro>p:last-child {
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px
}

.letter-section {
    background: #f1eee6;
    color: #0b1b2a;
    padding-block: 75px 90px
}

.letter-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: clamp(40px, 7vw, 100px);
    align-items: start
}

.hello-letter {
    min-width: 0
}

.letter-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #0b1b2a30;
    padding-bottom: 20px;
    font-size: 10px;
    letter-spacing: .16em;
    color: #766127
}

.letter-top span:last-child {
    font-size: 30px
}

.hello-letter h2 {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -.04em;
    margin: 36px 0
}

.sentence-field {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 25px 0;
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.6
}

.hello-letter input,
.hello-letter select,
.hello-letter textarea {
    color: #0b1b2a;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #0b1b2a50;
    border-radius: 0;
    padding: 8px 0;
    font: inherit;
    transition: border-color .3s, background .3s;
    min-width: 0;
    max-width: 100%
}

.hello-letter input {
    flex: 1;
    min-width: 150px;
    width: 200px
}

.hello-letter select {
    cursor: pointer;
    padding-right: 25px
}

.hello-letter input:focus,
.hello-letter select:focus,
.hello-letter textarea:focus {
    outline: 2px solid #927327;
    outline-offset: 5px;
    border-color: #927327
}

.hello-letter input::placeholder,
.hello-letter textarea::placeholder {
    color: #7b817f;
    opacity: 1
}

.message-label {
    display: block;
    margin-top: 34px;
    font-size: 20px
}

.hello-letter textarea {
    display: block;
    width: 100%;
    resize: vertical;
    min-height: 140px;
    font-size: 17px;
    line-height: 1.9;
    margin-top: 12px
}

.letter-signoff {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.letter-signoff p {
    font-size: 24px;
    letter-spacing: -.03em
}

.letter-signoff button {
    border: 1px solid #0b1b2a;
    background: #0b1b2a;
    color: #f1eee6;
    padding: 17px 24px;
    border-radius: 30px;
    font: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: background .3s, transform .3s
}

.letter-signoff button:hover {
    background: #263e51;
    transform: translateY(-2px)
}

.letter-signoff button span {
    margin-left: 20px
}

.draft-note {
    color: #657078;
    font-size: 12px;
    line-height: 1.7;
    max-width: 48ch
}

.contact-aside {
    padding-top: 18px
}

.contact-aside .eyebrow {
    color: #766127;
    font-size: 10px
}

.contact-aside h2 {
    font-weight: 400;
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.15;
    letter-spacing: -.04em;
    margin: 28px 0
}

.direct-email {
    font-size: clamp(14px, 1.4vw, 19px);
    text-decoration: underline;
    text-underline-offset: 6px;
    overflow-wrap: anywhere
}

.direct-email:hover {
    color: #80651c
}

.contact-aside>p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.8;
    color: #657078;
    max-width: 30ch;
    margin-top: 25px
}

.contact-aside .contact-socials {
    justify-content: flex-start;
    margin-top: 24px;
    gap: 12px;
    flex-wrap: wrap
}

.contact-aside .social-link {
    color: #0b1b2a;
    border-color: #0b1b2a40
}

.contact-aside .social-link:hover {
    background: #0b1b2a;
    color: #f1eee6;
    border-color: #0b1b2a
}

.contact-aside .aside-note {
    border-top: 1px solid #0b1b2a25;
    padding-top: 25px;
    margin-top: 40px !important
}

@media(max-width:700px) {
    .contact-intro {
        padding-top: 125px;
        padding-bottom: 48px
    }

    .letter-layout {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .letter-section {
        padding-block: 40px 55px
    }

    .hello-letter h2 {
        font-size: 34px
    }

    .sentence-field {
        font-size: 19px
    }

    .email-field {
        display: block
    }

    .email-field input {
        display: block;
        width: 100%;
        margin-top: 8px
    }

    .contact-aside {
        border-top: 1px solid #0b1b2a30;
        padding-top: 32px
    }
}

@media(prefers-reduced-motion:no-preference) {
    .contact-intro {
        animation: hello-in .85s cubic-bezier(.22, 1, .36, 1) both
    }

    @keyframes hello-in {
        from {
            opacity: 0;
            transform: translateY(16px)
        }

        to {
            opacity: 1;
            transform: none
        }
    }
}

.reply-time {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #0b1b2a25
}

.reply-time .eyebrow {
    margin: 0 0 10px
}

.reply-time>p:last-child {
    font-size: 14px;
    line-height: 1.8;
    color: #657078;
    margin: 0
}

.privacy-note {
    font-size: 13px;
    line-height: 1.7;
    color: #526058;
    margin-top: 22px
}