/* ============================================================
   Hyman Bloom Catalogue Raisonné — Shared Public Styles
   catalogue.css
   ============================================================ */

/* ── Breadcrumb back link ────────────────────────────────── */
.back-link {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
    text-decoration: none;
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
}
.back-link:hover { color: #602E37; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    margin-top: 4rem;
    border-top: 2px solid #C7C6C1;
    background: #E8E7E2;
    font-family: 'Inter', -apple-system, sans-serif;
}

.site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 5rem .5rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.site-footer .footer-brand {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.875rem;
    color: #1a1a1a;
    font-weight: 700;
}

.site-footer .footer-copyright {
    font-size: 0.75rem;
    color: #4a4a4a;
    margin-top: 0.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.site-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem 0;
    flex-direction: column;
}

.site-footer .footer-links-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #767676;
    margin-bottom: 0.1rem;
}

.site-footer .footer-links a {
    font-size: 0.8rem;
    color: #4a4a4a;
    text-decoration: none;
    padding: 0.1rem 0;
    transition: color 0.15s;
}

.site-footer .footer-links a:hover {
    color: #F86A2C;
}

.site-footer .footer-bottom {
    border-top: 1px solid #C7C6C1;
    padding-top: .1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.1rem;
}

.site-footer .footer-contact a {
    font-size: 0.75rem;
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-footer .footer-contact a:hover {
    color: #DA481F;
}

.site-footer .footer-anchor {
    background: #2c2a28;
    width: 100%;
}

/* Contact link inside the dark anchor strip needs light text */
.site-footer .footer-anchor .footer-contact a {
    color: #B3B2AD;
}

.site-footer .footer-anchor .footer-contact a:hover {
    color: #F86A2C;
}

.site-footer .footer-anchor .footer-bottom {
    border-top-color: #3e3c3a;
}

@media (min-width: 640px) {
    .site-footer .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .site-footer .footer-links {
        text-align: right;
    }

    .site-footer .footer-links-label {
        text-align: right;
    }
}

@media (max-width: 639px) {
    .site-footer .footer-inner {
        padding: 1rem 1.25rem 0.5rem 1.25rem;
    }
}

/* ── Contact Form Page ──────────────────────────────────── */
.contact-wrap {
    max-width: 560px;
    margin: 3rem auto;
    padding: 0 2rem;
    font-family: 'Inter', -apple-system, sans-serif;
}

.contact-wrap h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: #1a1a1a;
}

.contact-wrap .contact-intro {
    font-size: 0.875rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-wrap .form-group {
    margin-bottom: 1.25rem;
}

.contact-wrap label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4a4a4a;
    margin-bottom: 0.4rem;
}

.contact-wrap input,
.contact-wrap textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.15s;
}

.contact-wrap input:focus,
.contact-wrap textarea:focus {
    outline: none;
    border-color: #999;
}

.contact-wrap textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-wrap .btn-submit {
    padding: 0.6rem 1.5rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.contact-wrap .btn-submit:hover {
    background: #4a4a4a;
}

.contact-wrap .message {
    padding: 0.875rem 1rem;
    border-radius: 2px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.contact-wrap .message.success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.contact-wrap .message.error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.contact-wrap .back-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #767676;
    text-decoration: none;
}

.contact-wrap .back-link:hover {
    color: #1a1a1a;
}

/* ── Site Header — see header.css ─────────────────────────── */
