/* ═══════════════════════════════════════════════════════════════
   WKC Contact Page
   ═══════════════════════════════════════════════════════════════ */

.wkc-contact {
    font-family: var(--wkc-font);
    background: var(--wkc-bg);
    color: var(--wkc-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.wkc-contact *,
.wkc-contact *::before,
.wkc-contact *::after {
    box-sizing: border-box;
}

.contact-main {
    padding-bottom: 64px;
}

.contact-hero {
    position: relative;
    background: linear-gradient(135deg, var(--wkc-navy) 0%, var(--wkc-blue) 55%, #2563A8 100%);
    color: #fff;
    padding: 56px 0 64px;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(45, 184, 78, 0.14) 0%, transparent 45%);
    pointer-events: none;
}

.contact-hero__inner {
    position: relative;
    max-width: 720px;
}

.contact-hero__eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wkc-green-bright);
    margin-bottom: 12px;
}

.contact-hero__title {
    font-size: clamp(2rem, 6vw, 2.75rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.contact-hero__sub {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
}

.contact-body {
    margin-top: -28px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-intro {
    background: var(--wkc-white);
    border: 1px solid rgba(12, 50, 96, 0.08);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 6px 24px rgba(12, 50, 96, 0.05);
    font-size: 15px;
    font-weight: 600;
    color: var(--wkc-text-muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.contact-card {
    background: var(--wkc-white);
    border: 1px solid rgba(12, 50, 96, 0.08);
    border-radius: 16px;
    padding: clamp(22px, 4vw, 28px);
    box-shadow: 0 6px 24px rgba(12, 50, 96, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--wkc-blue), var(--wkc-navy));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card__icon--green {
    background: linear-gradient(135deg, var(--wkc-green), #22963D);
}

.contact-card__icon--gold {
    background: linear-gradient(135deg, #D4A017, #B8860B);
}

.contact-card h2 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--wkc-navy);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
}

.contact-card p {
    margin: 0;
    font-size: 14px;
    color: var(--wkc-text-muted);
}

.contact-emails {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-email {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: var(--wkc-bg-light);
    border: 1px solid rgba(12, 50, 96, 0.06);
    border-radius: 10px;
    transition: border-color 0.15s, background 0.15s;
}

.contact-email:hover {
    background: var(--wkc-bg);
    border-color: rgba(26, 79, 140, 0.18);
}

.contact-email__link {
    font-size: 13px;
    font-weight: 700;
    color: var(--wkc-blue);
    text-decoration: none;
    word-break: break-all;
}

.contact-email__link:hover {
    text-decoration: underline;
}

.contact-email__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--wkc-text-muted);
    flex-shrink: 0;
    text-align: right;
}

.contact-championships {
    grid-column: 1 / -1;
}

.contact-championships .contact-emails {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.contact-championships .contact-email__label {
    min-width: 88px;
}

.contact-tip {
    background: var(--wkc-white);
    border: 1px solid rgba(12, 50, 96, 0.08);
    border-left: 4px solid var(--wkc-green);
    border-radius: 0 14px 14px 0;
    padding: 18px 22px;
    box-shadow: 0 6px 24px rgba(12, 50, 96, 0.05);
}

.contact-tip strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--wkc-navy);
    margin-bottom: 6px;
}

.contact-tip p {
    margin: 0;
    font-size: 14px;
    color: var(--wkc-text-muted);
}

@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-championships .contact-emails {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 40px 0 52px;
    }

    .contact-email {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-email__label {
        text-align: left;
    }
}
