/* ============================================================
   Jeff's Barber — contact.css
   ============================================================ */

/* ── PAGE HEADER ──────────────────────────────────────────── */
.page-header {
    background: var(--black);
    color: var(--white);
    padding: 5rem 2.5rem 4rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    margin-bottom: 1rem;
}

.page-sub {
    color: #aaa;
    font-size: 0.95rem;
    font-weight: 300;
    max-width: 480px;
}

/* ── CONTACT SECTION ──────────────────────────────────────── */
.contact-section {
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 680px;
}

/* ── LEFT — INFO ──────────────────────────────────────────── */
.contact-info {
    padding: 3.5rem 3rem;
    border-right: 1px solid #e0e0dc;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-value {
    font-size: 0.97rem;
    color: var(--black);
    line-height: 1.6;
}

.contact-value--link {
    color: var(--accent);
    transition: opacity 0.2s;
}

.contact-value--link:hover {
    opacity: 0.7;
}

.contact-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    margin-top: 0.2rem;
    transition: opacity 0.2s;
}

.contact-link:hover {
    opacity: 0.7;
}

/* ── HOURS LIST ───────────────────────────────────────────── */
.contact-hours {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #444;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #f0f0ec;
}

.contact-hours li:last-child {
    border-bottom: none;
}

/* ── SOCIALS ──────────────────────────────────────────────── */
.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.2rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--black);
    border: 1px solid #e0e0dc;
    padding: 0.55rem 1rem;
    border-radius: var(--radius);
    transition: border-color 0.2s, color 0.2s;
}

.social-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ── QR CODE ──────────────────────────────────────────────── */
.contact-block--qr img {
    width: 150px;
    height: 150px;
    border-radius: var(--radius);
    border: 1px solid #e0e0dc;
    margin-top: 0.3rem;
}

/* ── RIGHT — MAP ──────────────────────────────────────────── */
.contact-map {
    background: #e8e8e4;
    min-height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid #e0e0dc;
    }

    .contact-map {
        min-height: 350px;
    }
}