﻿/* Wash Support — contact page only. Replace the OLD contactpage.css entirely.
   Load after app.css, appbar.css, and footer.css. Every selector is scoped to the contact main element;
   the shared header, logo, navigation, and footer live outside this element. */

.ws-contact-page {
    flex: 1 0 auto;
    min-width: 0;
    width: 100%;
    background: var(--ws-paper);
    color: var(--ws-ink);
    font-family: var(--ws-font-body);
}

    .ws-contact-page:focus {
        outline: none;
    }

    .ws-contact-page .ws-contact-hero {
        position: relative;
        margin: 0;
        padding: clamp(48px, 6vw, 80px) 0 40px;
        background: var(--ws-paper);
    }

    .ws-contact-page .ws-eyebrow {
        padding-left: 13px;
        border-left: 3px solid #1392a8;
        color: #176a7a;
    }

    .ws-contact-page .ws-page-title {
        margin: 20px 0 0;
        color: var(--ws-ink);
        font-family: var(--ws-font-display);
        font-size: clamp(2.5rem, 4.8vw, 3.75rem);
        font-weight: 700;
        letter-spacing: -.045em;
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .ws-contact-page .ws-page-subtitle {
        max-width: 55ch;
        margin: 22px 0 0;
        color: var(--ws-steel);
        font-size: 1.0625rem;
        line-height: 1.8;
    }

    .ws-contact-page .ws-contact-strip {
        position: relative;
        margin: 0;
        padding: 0 0 clamp(56px, 7vw, 96px);
        background: var(--ws-paper);
    }

    .ws-contact-page .ws-contact-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .ws-contact-page .ws-contact-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
        min-width: 0;
        height: 100%;
        padding: clamp(24px, 3vw, 36px);
        border: 1px solid var(--ws-border);
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 4px 14px #18374c05;
    }

    .ws-contact-page .ws-contact-icon {
        display: grid;
        place-items: center;
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        border: 1px solid #d5ecf1;
        border-radius: 11px;
        background: var(--ws-signal-dim);
        color: #087e93;
    }

        .ws-contact-page .ws-contact-icon svg {
            width: 24px;
            height: 24px;
        }

    .ws-contact-page .ws-contact-body {
        min-width: 0;
        width: 100%;
    }

    .ws-contact-page .ws-contact-label {
        margin: 0 0 5px;
        color: var(--ws-steel);
        font-family: var(--ws-font-body);
        font-size: .875rem;
        font-weight: 600;
        line-height: 1.5;
    }

    .ws-contact-page .ws-card-link {
        display: block;
        width: fit-content;
        max-width: 100%;
        min-height: 44px;
        padding: 4px 0;
        border-radius: 3px;
        color: var(--ws-ink);
        font-family: var(--ws-font-display);
        font-size: clamp(1.125rem, 1.9vw, 1.5rem);
        font-weight: 650;
        letter-spacing: -.025em;
        line-height: 1.5;
        text-decoration: none;
        text-underline-offset: 5px;
        text-decoration-thickness: 1px;
        overflow-wrap: anywhere;
    }

        .ws-contact-page .ws-card-link[href]:hover {
            color: #087e93;
            text-decoration: underline;
        }

        .ws-contact-page .ws-card-link[href]:focus-visible {
            outline: 3px solid #087e93;
            outline-offset: 5px;
        }

        .ws-contact-page .ws-card-link:not([href]) {
            color: var(--ws-steel);
            font-family: var(--ws-font-body);
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: normal;
        }

    .ws-contact-page .ws-contact-meta {
        margin: 12px 0 0;
        padding-top: 17px;
        border-top: 1px solid #e7edf2;
        color: var(--ws-steel);
        font-size: .875rem;
        line-height: 1.7;
    }

@media (max-width: 820px) {
    .ws-contact-page .ws-contact-grid {
        gap: 18px;
    }

    .ws-contact-page .ws-contact-card {
        padding: 24px;
    }
}

@media (max-width: 700px) {
    .ws-contact-page .ws-contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ws-contact-page .ws-contact-hero {
        padding-bottom: 32px;
    }

    .ws-contact-page .ws-page-subtitle {
        font-size: 1rem;
        line-height: 1.75;
    }

    .ws-contact-page .ws-contact-card {
        gap: 20px;
    }

    .ws-contact-page .ws-card-link {
        font-size: clamp(1.125rem, 4.6vw, 1.5rem);
    }
}
