@layer pages {
    .pv2-contact-page {
        color: var(--pv2-body);
        background: var(--pv2-white);
    }

    .pv2-contact-hero {
        padding-block: clamp(3.75rem, 7vw, 6.5rem);
        background: var(--pv2-off-white);
        border-bottom: 1px solid var(--pv2-border);
    }

    .pv2-contact-hero__grid {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
        gap: clamp(2.5rem, 7vw, 7rem);
        align-items: start;
    }

    .pv2-contact-hero__copy {
        min-width: 0;
        padding-top: .75rem;
    }

    .pv2-contact-hero h1 {
        max-width: 13ch;
        margin: 0;
        color: var(--pv2-navy);
        font-size: clamp(3rem, 5.6vw, 5.4rem);
        line-height: 1.02;
        letter-spacing: -.055em;
        text-wrap: balance;
    }

    .pv2-contact-hero__lead {
        max-width: 38rem;
        margin: 1.75rem 0 0;
        color: var(--pv2-ink);
        font-size: clamp(1.1rem, 1.7vw, 1.35rem);
        line-height: 1.62;
    }

    .pv2-contact-hero__support {
        max-width: 35rem;
        margin: 1rem 0 0;
        color: var(--pv2-muted);
        line-height: 1.7;
    }

    .pv2-contact-expectations {
        max-width: 42rem;
        margin-top: clamp(2rem, 4vw, 3.25rem);
        border-top: 1px solid var(--pv2-border);
    }

    .pv2-contact-expectations > div {
        display: grid;
        grid-template-columns: 6.5rem minmax(0, 1fr);
        gap: 1.25rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--pv2-border);
    }

    .pv2-contact-expectations span {
        color: var(--pv2-cobalt);
        font-size: .75rem;
        font-weight: 800;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

    .pv2-contact-expectations strong {
        color: var(--pv2-navy);
        font-weight: 700;
    }

    .pv2-contact-form-shell {
        min-width: 0;
        padding: clamp(1.5rem, 3vw, 2.25rem);
        border-top: 4px solid var(--pv2-cobalt);
        background: var(--pv2-white);
        box-shadow: var(--pv2-shadow-elevated);
    }

    .pv2-contact-form-shell__head h2,
    .pv2-contact-section-head h2,
    .pv2-contact-note h2,
    .pv2-contact-bridge h2 {
        margin: 0;
        color: var(--pv2-navy);
        font-size: clamp(2rem, 3.4vw, 3rem);
        line-height: 1.12;
        letter-spacing: -.04em;
        text-wrap: balance;
    }

    .pv2-contact-form-shell__head > p:last-child {
        margin: .85rem 0 0;
        color: var(--pv2-muted);
        line-height: 1.65;
    }

    .pv2-contact-state {
        margin-top: 1.25rem;
        padding: .85rem 1rem;
        border-left: 4px solid;
        font-size: .95rem;
    }

    .pv2-contact-state--success {
        border-color: #18794e;
        background: #ecfdf3;
        color: #05603a;
    }

    .pv2-contact-form {
        margin-top: 1.75rem;
    }

    .pv2-contact-honeypot {
        position: absolute;
        left: -10000px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }

    .pv2-contact-validation-summary {
        margin-bottom: 1rem;
        color: #b42318;
        font-size: .9rem;
    }

    .pv2-contact-validation-summary:empty {
        display: none;
    }

    .pv2-contact-validation-summary ul {
        margin: 0;
        padding-left: 1.25rem;
    }

    .pv2-contact-form__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.1rem;
    }

    .pv2-contact-field {
        min-width: 0;
    }

    .pv2-contact-field--full {
        grid-column: 1 / -1;
    }

    .pv2-contact-field label {
        display: block;
        margin-bottom: .45rem;
        color: var(--pv2-navy);
        font-size: .875rem;
        font-weight: 750;
    }

    .pv2-contact-field label > span[aria-hidden="true"] {
        color: var(--pv2-cobalt);
    }

    .pv2-contact-field__optional,
    .pv2-contact-field__help {
        color: var(--pv2-muted);
        font-size: .8125rem;
        font-weight: 400;
    }

    .pv2-contact-form input:not([type="hidden"]),
    .pv2-contact-form textarea {
        width: 100%;
        min-height: 48px;
        padding: .7rem .8rem;
        border: 1px solid #aeb8c6;
        border-radius: var(--pv2-radius);
        background: var(--pv2-white);
        color: var(--pv2-ink);
        font: inherit;
        line-height: 1.45;
    }

    .pv2-contact-form textarea {
        min-height: 150px;
        resize: vertical;
    }

    .pv2-contact-form input:not([type="hidden"]):focus,
    .pv2-contact-form textarea:focus {
        border-color: var(--pv2-cobalt);
    }

    .pv2-contact-form .input-validation-error {
        border-color: #b42318;
        background: #fffafa;
    }

    .pv2-contact-field__help {
        display: block;
        margin-top: .35rem;
        line-height: 1.5;
    }

    .pv2-contact-field__error {
        display: block;
        min-height: 1.35rem;
        margin-top: .3rem;
        color: #b42318;
        font-size: .8125rem;
        line-height: 1.45;
    }

    .pv2-contact-submit {
        width: 100%;
        margin-top: .15rem;
        cursor: pointer;
    }

    .pv2-contact-form-shell__note {
        margin: 1.1rem 0 0;
        color: var(--pv2-muted);
        font-size: .875rem;
        line-height: 1.6;
    }

    .pv2-contact-section-head {
        display: grid;
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: clamp(2rem, 8vw, 7rem);
        align-items: start;
        margin-bottom: 3rem;
    }

    .pv2-contact-section-head > p {
        max-width: 34rem;
        margin: .25rem 0 0;
        color: var(--pv2-muted);
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .pv2-contact-direct__grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border-top: 1px solid var(--pv2-border);
    }

    .pv2-contact-direct__item {
        min-width: 0;
        padding: 1.5rem 1.5rem 1rem 0;
    }

    .pv2-contact-direct__item + .pv2-contact-direct__item {
        padding-left: 1.5rem;
        border-left: 1px solid var(--pv2-border);
    }

    .pv2-contact-direct__item > span:first-child {
        display: block;
        color: var(--pv2-cobalt);
        font-size: .75rem;
        font-weight: 800;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .pv2-contact-direct__item a,
    .pv2-contact-direct__value {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        margin-top: .45rem;
        color: var(--pv2-navy);
        font-size: 1.05rem;
        font-weight: 750;
        overflow-wrap: anywhere;
        text-underline-offset: 4px;
    }

    .pv2-contact-direct__item p {
        margin: .4rem 0 0;
        color: var(--pv2-muted);
        font-size: .9rem;
        line-height: 1.6;
    }

    .pv2-contact-note {
        padding-block: clamp(4rem, 7vw, 6.5rem);
        background: var(--pv2-navy);
        color: #cbd5e1;
    }

    .pv2-contact-note h2 {
        color: var(--pv2-white);
    }

    .pv2-contact-note__grid {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
        gap: clamp(2.5rem, 8vw, 7rem);
        align-items: start;
    }

    .pv2-contact-note > .pv2-container > div:first-child > p:last-child {
        max-width: 34rem;
        margin: 1.25rem 0 0;
        color: #cbd5e1;
        line-height: 1.7;
    }

    .pv2-contact-guide {
        border-top: 1px solid #395065;
    }

    .pv2-contact-guide > div {
        padding: 1rem 0;
        border-bottom: 1px solid #395065;
    }

    .pv2-contact-guide strong {
        display: block;
        color: var(--pv2-white);
    }

    .pv2-contact-guide span {
        display: block;
        margin-top: .25rem;
        color: #cbd5e1;
    }

    .pv2-contact-bridge {
        padding-block: clamp(4rem, 7vw, 6rem);
        background: var(--pv2-off-white);
        border-bottom: 1px solid var(--pv2-border);
    }

    .pv2-contact-bridge__grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) auto;
        gap: 3rem;
        align-items: end;
    }

    .pv2-contact-bridge__actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        gap: 1rem 1.5rem;
    }

    .pv2-contact-sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    @media (max-width: 1023px) {
        .pv2-contact-hero__grid,
        .pv2-contact-note__grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .pv2-contact-hero__copy {
            padding-top: 0;
        }

        .pv2-contact-direct__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .pv2-contact-direct__item:nth-child(odd) {
            padding-left: 0;
            border-left: 0;
        }

        .pv2-contact-direct__item:nth-child(n + 3) {
            border-top: 1px solid var(--pv2-border);
        }

        .pv2-contact-bridge__grid {
            grid-template-columns: 1fr;
            align-items: start;
        }

        .pv2-contact-bridge__actions {
            justify-content: flex-start;
        }
    }

    @media (max-width: 639px) {
        .pv2-contact-hero {
            padding-block: 3.5rem 4rem;
        }

        .pv2-contact-hero h1 {
            font-size: 2.9rem;
        }

        .pv2-contact-hero__lead {
            font-size: 1.1rem;
        }

        .pv2-contact-expectations > div {
            grid-template-columns: 5rem minmax(0, 1fr);
            gap: .75rem;
        }

        .pv2-contact-form-shell {
            padding: 1.35rem;
        }

        .pv2-contact-form__grid,
        .pv2-contact-direct__grid {
            grid-template-columns: 1fr;
        }

        .pv2-contact-field--full {
            grid-column: auto;
        }

        .pv2-contact-direct__item,
        .pv2-contact-direct__item + .pv2-contact-direct__item {
            padding: 1.25rem 0;
            border-left: 0;
            border-top: 1px solid var(--pv2-border);
        }

        .pv2-contact-direct__item:first-child {
            border-top: 0;
        }

        .pv2-contact-note,
        .pv2-contact-bridge {
            padding-block: 3.75rem;
        }

        .pv2-contact-note h2,
        .pv2-contact-bridge h2 {
            font-size: 2rem;
        }

        .pv2-contact-bridge__actions {
            align-items: stretch;
            flex-direction: column;
        }

        .pv2-contact-bridge__actions .pv2-button,
        .pv2-contact-bridge__actions .pv2-text-link {
            width: 100%;
            justify-content: center;
        }
    }
}
