/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-wrap {
    padding: 72px 48px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: start;
}

/* Contact detail blocks */
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.contact-block { display: flex; align-items: flex-start; gap: 20px; }
.contact-block-icon {
    width: 52px; height: 52px;
    background: var(--navy-pale);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; border-top: 3px solid var(--crimson);
}
.contact-block-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-300); margin-bottom: 6px; display: block; }
.contact-block-value { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--navy-deep); line-height: 1.4; letter-spacing: 0.01em; }
.contact-block-value a { color: var(--navy-deep); }
.contact-block-value a:hover { color: var(--crimson); }
.contact-block-sub { font-size: 13px; color: var(--grey-500); margin-top: 4px; line-height: 1.6; }
.contact-divider { border: none; border-top: 1px solid var(--grey-100); margin: 0; }

/* Office hours */
.contact-hours { padding: 24px; background: var(--navy-deep); }
.contact-hours-title { font-family: var(--serif); font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.05em; margin-bottom: 14px; text-transform: uppercase; }
.contact-hours-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.contact-hours-row:last-child { margin-bottom: 0; }
.contact-hours-day { color: rgba(255,255,255,0.55); }
.contact-hours-time { color: #fff; font-weight: 500; }

/* Contact form */
.contact-form-wrap { background: #fff; border: 1px solid var(--grey-100); border-top: 3px solid var(--crimson); padding: 40px; }
.contact-form-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--navy-deep); letter-spacing: 0.02em; margin-bottom: 6px; }
.contact-form-sub { font-size: 14px; color: var(--grey-500); margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--grey-100); line-height: 1.6; }

/* Map */
.contact-map-section { display: block; line-height: 0; }
.contact-map-section iframe { width: 100%; height: 400px; border: 0; display: block; }

/* Responsive */
@media (max-width: 900px) {
    .contact-wrap { grid-template-columns: 1fr; gap: 40px; padding: 48px 20px; }
    .contact-map-section iframe { height: 280px; }
}
