/* No body override — inherits the default background from main.css */

.action-bar {
    background: linear-gradient(to bottom, rgba(14, 14, 14, 1), rgba(14, 14, 14, 0));
}

/* ── Page wrapper ─────────────────────────────────────────────── */
.contact-page {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 24px 64px;
}

/* ── Card ─────────────────────────────────────────────────────── */
.contact-card {
    background: rgba(14, 14, 14, 0.82);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 14px;
    padding: 40px 44px;
    max-width: 560px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ── Header ───────────────────────────────────────────────────── */
.contact-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.contact-heading {
    font-family: 'HwyGothic', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.18em;
    color: #c9a96e;
    margin: 0;
}

.contact-subtext {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.95rem;
    color: #b8b0a0;
    line-height: 1.7;
    margin: 0;
}

/* ── Contact methods ──────────────────────────────────────────── */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}
.contact-method:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.4);
    transform: translateX(4px);
}

.contact-method-icon {
    font-size: 1.3rem;
    color: #c9a96e;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.contact-method-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.contact-method-label {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: #c9a96e;
    text-transform: uppercase;
}

.contact-method-value {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.95rem;
    color: #e8e0ce;
}

.contact-method-arrow {
    font-size: 0.75rem;
    color: rgba(201, 169, 110, 0.4);
    flex-shrink: 0;
    transition: color 0.18s ease;
}
.contact-method:hover .contact-method-arrow {
    color: #c9a96e;
}

/* ── Mobile ───────────────────────────────────────────────────── */
@media only screen and ((max-width: 767px) or (hover: none)) {
    .contact-page {
        padding: 24px 16px 48px;
    }

    .contact-card {
        padding: 28px 24px;
    }

    .action-bar {
        background-color: #0e0e0e;
    }
}
