/*
Theme Name: Reed & Key
Theme URI: https://reedandkey.com/
Author: Reed & Key
Description: Custom WordPress theme for Reed & Key Private Woodwind Instruction.
Version: 1.0.0
Text Domain: reedandkey
Requires at least: 6.4
Requires PHP: 8.0
*/

/* ========================================
   REED & KEY
   Custom Theme
======================================== */

:root {
    --ivory: #f7f3eb;
    --cream: #eee7da;
    --charcoal: #242321;
    --soft-black: #171716;
    --brass: #a9844f;
    --brass-dark: #806239;
    --white: #ffffff;
    --border: rgba(36, 35, 33, 0.15);

    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--charcoal);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.7;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.site-main {
    overflow: hidden;
}


/* ========================================
   HEADER
======================================== */

.site-header {
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
}

.site-header-inner {
    width: min(1180px, 90%);
    min-height: 105px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-brand {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.brand-name {
    font-family: var(--serif);
    font-size: 28px;
    letter-spacing: 0.08em;
}

.brand-tagline {
    margin-top: 10px;
    color: var(--brass-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.site-navigation ul {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-navigation a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.site-navigation a:hover {
    color: var(--brass-dark);
}


/* ========================================
   SHARED
======================================== */

.section-inner {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.section-inner.narrow {
    width: min(800px, 88%);
}

.section-eyebrow,
.hero-eyebrow {
    margin: 0 0 22px;
    color: var(--brass-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.08;
}

h2 {
    margin-bottom: 28px;
    font-size: clamp(38px, 5vw, 62px);
    letter-spacing: -0.025em;
}

p {
    margin-top: 0;
}

.button {
    display: inline-block;
    padding: 17px 28px;
    border: 1px solid var(--charcoal);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.button-primary {
    background: var(--charcoal);
    color: var(--white);
}

.button-primary:hover {
    background: var(--brass-dark);
    border-color: var(--brass-dark);
}

.button-light {
    background: var(--ivory);
    border-color: var(--ivory);
    color: var(--soft-black);
}

.button-light:hover {
    background: var(--white);
    border-color: var(--white);
}

.text-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--brass-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}


/* ========================================
   HERO
======================================== */

.hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(247, 243, 235, 1) 0%,
            rgba(247, 243, 235, 0.97) 52%,
            rgba(238, 231, 218, 0.72) 100%
        );
}

.hero-inner {
    width: min(1180px, 90%);
    margin: 0 auto;
    padding: 100px 0;
}

.hero h1 {
    max-width: 850px;
    margin-bottom: 30px;
    font-size: clamp(52px, 7vw, 88px);
    letter-spacing: -0.04em;
}

.hero-intro {
    max-width: 620px;
    margin-bottom: 34px;
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.55;
}

.hero-instruments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin-bottom: 22px;
}

.hero-instruments span {
    color: var(--brass-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.hero-location {
    margin-bottom: 32px;
    font-size: 14px;
}


/* ========================================
   INTRO
======================================== */

.intro-section {
    padding: 130px 0;
    text-align: center;
}

.intro-section p:last-child {
    margin-bottom: 0;
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.8;
}


/* ========================================
   INSTRUMENTS
======================================== */

.instruments-section {
    padding: 120px 0;
    background: var(--soft-black);
    color: var(--ivory);
}

.instruments-section .section-eyebrow {
    color: #c5a36f;
}

.instrument-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 65px;
    border-top: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

.instrument-card {
    min-height: 330px;
    padding: 38px 30px;
    border-right: 1px solid rgba(255,255,255,0.18);
}

.instrument-card:first-child {
    border-left: 1px solid rgba(255,255,255,0.18);
}

.instrument-number {
    display: block;
    margin-bottom: 65px;
    color: #c5a36f;
    font-size: 10px;
    letter-spacing: 0.16em;
}

.instrument-card h3 {
    margin-bottom: 22px;
    font-size: 36px;
}

.instrument-card p {
    color: rgba(247,243,235,0.72);
    font-size: 14px;
    line-height: 1.7;
}


/* ========================================
   MARISSA
======================================== */

.marissa-section {
    padding: 130px 0;
    background: var(--cream);
}

.marissa-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 75px;
    align-items: center;
    max-width: 1120px;
}
.marissa-copy {
    padding-top: 10px;
}

.marissa-photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #d9d0c1;
}

.marissa-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.marissa-copy p:not(.section-eyebrow) {
    max-width: 600px;
    font-size: 17px;
}


/* ========================================
   STUDENT TYPES
======================================== */

.who-section {
    padding: 130px 0;
    text-align: center;
}

.who-section > .section-inner > p:not(.section-eyebrow) {
    font-family: var(--serif);
    font-size: 19px;
}

.student-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 42px;
}

.student-types span {
    padding: 11px 17px;
    border: 1px solid var(--border);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}


/* ========================================
   TRAVEL / SERVICE AREA
======================================== */

.travel-section {
    padding: 120px 0;
    background: var(--cream);
    text-align: center;
}

.travel-section p:last-child {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.8;
}


/* ========================================
   CTA
======================================== */

.cta-section {
    padding: 130px 0;
    background: var(--brass-dark);
    color: var(--white);
    text-align: center;
}

.cta-section .section-eyebrow {
    color: rgba(255,255,255,0.68);
}

.cta-section p:not(.section-eyebrow) {
    max-width: 650px;
    margin: 0 auto 35px;
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
    padding: 65px 0;
    background: var(--soft-black);
    color: var(--ivory);
    text-align: center;
}

.site-footer-inner {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.footer-brand strong {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.footer-brand span {
    margin-top: 8px;
    color: #c5a36f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-footer p {
    color: rgba(247,243,235,0.6);
    font-size: 12px;
}

.copyright {
    margin-top: 30px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 850px) {

    .site-header-inner {
        min-height: 90px;
    }

    .site-navigation {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 85px 0 95px;
    }

    .hero h1 {
        font-size: clamp(46px, 13vw, 68px);
    }

    .instrument-grid {
        grid-template-columns: 1fr 1fr;
    }

    .instrument-card:nth-child(3) {
        border-left: 1px solid rgba(255,255,255,0.18);
    }

    .marissa-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .marissa-photo {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 540px) {

    body {
        font-size: 16px;
    }

    .hero-inner {
        padding: 70px 0 80px;
    }

    .hero h1 {
        font-size: 47px;
    }

    .hero-intro {
        font-size: 19px;
    }

    .instrument-grid {
        grid-template-columns: 1fr;
    }

    .instrument-card,
    .instrument-card:first-child,
    .instrument-card:nth-child(3) {
        border-left: 1px solid rgba(255,255,255,0.18);
    }

    .intro-section,
    .instruments-section,
    .marissa-section,
    .who-section,
    .travel-section,
    .cta-section {
        padding: 85px 0;
    }
}
/* ========================================
   LESSONS PAGE
======================================== */

.page-hero {
    padding: 120px 0 110px;
    background: var(--cream);
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 28px;
    font-size: clamp(48px, 7vw, 78px);
    letter-spacing: -0.035em;
}

.page-hero-intro {
    max-width: 720px;
    margin-bottom: 0;
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.65;
}

.lesson-overview-section {
    padding: 120px 0;
    text-align: center;
}

.lesson-overview-section p:not(.section-eyebrow) {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.8;
}

.lesson-instruments-section {
    padding: 120px 0;
    background: var(--soft-black);
    color: var(--ivory);
}

.lesson-instruments-section .section-eyebrow {
    color: #c5a36f;
}

.lesson-instrument-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 60px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.18);
}

.lesson-instrument-card {
    min-height: 430px;
    padding: 45px 42px;
    background: var(--soft-black);
}

.lesson-instrument-card h3 {
    margin-bottom: 22px;
    font-size: 42px;
}

.lesson-instrument-card p {
    color: rgba(247,243,235,0.76);
    font-size: 15px;
}

.lesson-instrument-card ul {
    margin: 30px 0 0;
    padding-left: 20px;
    color: rgba(247,243,235,0.72);
    font-size: 14px;
    line-height: 1.9;
}

.lesson-instrument-card li::marker {
    color: #c5a36f;
}

.lesson-students-section {
    padding: 125px 0;
}

.lesson-audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 65px;
    margin-top: 55px;
}

.lesson-audience-grid h3 {
    margin-bottom: 14px;
    font-size: 28px;
}

.lesson-audience-grid p {
    margin-bottom: 0;
    font-size: 15px;
}

.inhome-section {
    padding: 120px 0;
    background: var(--cream);
    text-align: center;
}

.inhome-section p:not(.section-eyebrow) {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.8;
}

.lesson-cta-section {
    padding: 125px 0;
    background: var(--brass-dark);
    color: var(--white);
    text-align: center;
}

.lesson-cta-section .section-eyebrow {
    color: rgba(255,255,255,0.68);
}

.lesson-cta-section p:not(.section-eyebrow) {
    max-width: 650px;
    margin: 0 auto 35px;
}


/* ========================================
   LESSONS PAGE MOBILE
======================================== */

@media (max-width: 850px) {

    .page-hero {
        padding: 90px 0 85px;
    }

    .lesson-instrument-grid {
        grid-template-columns: 1fr;
    }

    .lesson-audience-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 540px) {

    .page-hero h1 {
        font-size: 46px;
    }

    .lesson-overview-section,
    .lesson-instruments-section,
    .lesson-students-section,
    .inhome-section,
    .lesson-cta-section {
        padding: 85px 0;
    }

    .lesson-instrument-card {
        min-height: 0;
        padding: 38px 28px;
    }
}
/* ========================================
   ABOUT MARISSA PAGE
======================================== */

.about-hero {
    padding: 100px 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 80px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

.about-hero-copy {
    min-width: 0;
}

.about-hero-copy h1 {
    max-width: 700px;
    margin: 0 0 30px;
    font-size: clamp(56px, 5.5vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.about-hero .page-hero-intro {
    max-width: 650px;
    margin: 0;
    font-size: 20px;
    line-height: 1.65;
}

.about-hero-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #d9d0c1;
}

.about-hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


/* ========================================
   ABOUT STORY
======================================== */

.about-story-section,
.about-performance-section,
.about-teaching-section {
    padding: 125px 0;
}

.about-story-section p:not(.section-eyebrow),
.about-performance-section p:not(.section-eyebrow),
.about-teaching-section p:not(.section-eyebrow) {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.8;
}


/* ========================================
   WESLEYAN
======================================== */

.about-wesleyan-section {
    padding: 125px 0;
    background: var(--cream);
}

.about-wesleyan-section p:not(.section-eyebrow) {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.8;
}


/* ========================================
   PERFORMANCE HIGHLIGHTS
======================================== */

.performance-highlights-section {
    padding: 125px 0;
    background: var(--soft-black);
    color: var(--ivory);
}

.performance-highlights-section .section-eyebrow {
    color: #c5a36f;
}

.performance-highlights-section > .section-inner > h2 {
    margin-bottom: 60px;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,0.18);
    border-left: 1px solid rgba(255,255,255,0.18);
}

.performance-card {
    min-height: 250px;
    padding: 35px 30px;
    border-right: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

.performance-card h3 {
    margin-bottom: 22px;
    color: var(--ivory);
    font-size: 27px;
    line-height: 1.2;
}

.performance-card p {
    margin-bottom: 15px;
    color: #c5a36f;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.performance-card span {
    display: block;
    color: rgba(247,243,235,0.65);
    font-size: 13px;
    line-height: 1.7;
}


/* ========================================
   TEACHING SECTION
======================================== */

.about-teaching-section {
    text-align: center;
}

.about-service-note {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--brass-dark);
}


/* ========================================
   ABOUT PAGE MOBILE
======================================== */

@media (max-width: 850px) {

    .about-hero {
        padding: 80px 0 90px;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-hero-photo {
        width: min(480px, 100%);
    }

    .performance-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 540px) {

    .about-hero-copy h1 {
        font-size: 46px;
    }

    .about-story-section,
    .about-wesleyan-section,
    .about-performance-section,
    .performance-highlights-section,
    .about-teaching-section {
        padding: 85px 0;
    }

    .performance-grid {
        grid-template-columns: 1fr;
    }

    .performance-card {
        min-height: 0;
    }
}
/* ========================================
   RATES & POLICIES
======================================== */

.rates-hero {
    padding: 110px 0 100px;
}

.rates-hero h1 {
    max-width: 800px;
    margin-bottom: 28px;
    font-size: clamp(56px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.rates-hero .page-hero-intro {
    max-width: 680px;
    margin: 0;
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.65;
}


/* LESSON RATES */

.rates-section {
    padding: 120px 0;
    background: var(--cream);
}

.rates-section > .section-inner > h2 {
    max-width: 760px;
    margin-bottom: 55px;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.rate-card {
    position: relative;
    min-height: 390px;
    padding: 42px 36px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.rate-length {
    margin-bottom: 25px;
    color: var(--brass);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.rate-price {
    margin-bottom: 28px;
    font-family: var(--serif);
    font-size: 64px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.rate-description {
    max-width: 310px;
    font-size: 16px;
    line-height: 1.75;
}

.featured-rate {
    background: var(--soft-black);
    color: var(--ivory);
}

.featured-rate .rate-length {
    color: #c5a36f;
}

.featured-rate .rate-price {
    color: var(--ivory);
}

.rate-badge {
    position: absolute;
    right: 30px;
    bottom: 28px;
    color: #c5a36f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.rates-note {
    margin-top: 30px;
    color: var(--muted);
    font-size: 14px;
}


/* POLICY SECTIONS */

.policy-section {
    padding: 105px 0;
}

.policy-alt {
    background: var(--cream);
}

.policy-section h2 {
    max-width: 720px;
    margin-bottom: 32px;
}

.policy-section p:not(.section-eyebrow) {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.8;
}


/* ========================================
   RATES MOBILE
======================================== */

@media (max-width: 850px) {

    .rates-hero {
        padding: 80px 0;
    }

    .rates-grid {
        grid-template-columns: 1fr;
    }

    .rate-card {
        min-height: 0;
        padding: 38px 30px 70px;
    }

    .rates-section,
    .policy-section {
        padding: 85px 0;
    }
}

@media (max-width: 540px) {

    .rates-hero h1 {
        font-size: 48px;
    }

    .rate-price {
        font-size: 56px;
    }
}
/* ========================================
   CONTACT / REQUEST A LESSON
======================================== */

.contact-hero {
    padding: 105px 0 100px;
}

.contact-hero h1 {
    max-width: 720px;
    margin: 0 0 28px;
    font-size: clamp(58px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.contact-hero .page-hero-intro {
    max-width: 760px;
    margin: 0;
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.65;
}


/* FORM SECTION */

.contact-form-section {
    padding: 110px 0 120px;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 90px;
    align-items: start;
}

.contact-intro {
    min-width: 0;
}

.contact-intro h2 {
    margin: 0 0 30px;
    font-size: clamp(44px, 4vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.contact-intro > p {
    font-size: 17px;
    line-height: 1.75;
}

.contact-details {
    margin: 42px 0;
    padding: 8px 0;
    border-top: 1px solid var(--border);
}

.contact-detail {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail span {
    display: block;
    margin-bottom: 5px;
    color: var(--brass);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.contact-detail p {
    margin: 0;
    font-family: var(--serif);
    font-size: 18px;
}

.contact-note {
    margin-top: 30px;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: var(--muted);
}


/* WPFORMS */

.contact-form-wrap {
    min-width: 0;
    padding: 42px;
    background: #fff;
    border: 1px solid var(--border);
}

.contact-form-wrap .wpforms-container {
    margin: 0;
}

.contact-form-wrap .wpforms-field {
    padding: 0 0 24px !important;
}

.contact-form-wrap .wpforms-field-label {
    margin-bottom: 8px !important;
    color: var(--charcoal) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="number"],
.contact-form-wrap select,
.contact-form-wrap textarea {
    width: 100% !important;
    max-width: none !important;
    padding: 13px 14px !important;
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: 0 !important;
    color: var(--charcoal) !important;
    font-family: var(--sans) !important;
    font-size: 16px !important;
    box-shadow: none !important;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="number"],
.contact-form-wrap select {
    min-height: 50px !important;
}

.contact-form-wrap textarea {
    min-height: 130px !important;
    resize: vertical;
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
    outline: none !important;
    border-color: var(--brass) !important;
    box-shadow: 0 0 0 1px var(--brass) !important;
}


/* MULTIPLE CHOICE */

.contact-form-wrap .wpforms-field-radio ul {
    margin: 8px 0 0 !important;
}

.contact-form-wrap .wpforms-field-radio li {
    margin-bottom: 10px !important;
}

.contact-form-wrap .wpforms-field-radio label {
    font-size: 15px !important;
}


/* SUBMIT BUTTON */

.contact-form-wrap button[type="submit"],
.contact-form-wrap .wpforms-submit {
    min-height: 54px !important;
    padding: 0 30px !important;
    background: var(--soft-black) !important;
    border: 1px solid var(--soft-black) !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.13em !important;
    text-transform: uppercase !important;
    cursor: pointer;
}

.contact-form-wrap button[type="submit"]:hover,
.contact-form-wrap .wpforms-submit:hover {
    background: var(--brass) !important;
    border-color: var(--brass) !important;
}


/* HELP SECTION */

.contact-help-section {
    padding: 105px 0;
}

.contact-help-section h2 {
    margin-bottom: 28px;
}

.contact-help-section p:not(.section-eyebrow) {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.8;
}

.contact-help-section a {
    color: var(--brass);
    font-weight: 700;
}
/* Name field proportions */
.contact-form-wrap .wpforms-field-name .wpforms-field-row-block:first-child {
    width: 38% !important;
}

.contact-form-wrap .wpforms-field-name .wpforms-field-row-block:last-child {
    width: 58% !important;
}

/* MOBILE */

@media (max-width: 850px) {

    .contact-hero {
        padding: 80px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form-section,
    .contact-help-section {
        padding: 85px 0;
    }

    .contact-form-wrap {
        padding: 32px;
    }
}

@media (max-width: 540px) {

    .contact-hero h1 {
        font-size: 48px;
    }

    .contact-form-wrap {
        padding: 25px 20px;
    }
}