/* ===========================
   CONTACT PAGE – Cozzi Cotton
   =========================== */
:root {
    --cozzicotton-primary: #B89658; /* Cozzi Cotton orange */
    --cozzicotton-primary-hover: #947844; /* slightly darker */
    --cozzicotton-gold: #d4af37;
    --fi-text: #1f2937; /* slate-800 */
    --fi-muted: #6b7280; /* slate-500 */
    --fi-border: #e2e8f0; /* gray-200 */
    --fi-bg: #ffffff; /* white */
    --fi-panel-bg: #ffffff; /* subtle gray */
    --fi-header-bg: #f7f9fc; /* light grey for section headers */
    --fi-shadow-sm: 0 2px 4px rgba(0, 0, 0, .06), 0 8px 16px rgba(0, 0, 0, .04);
    --fi-radius: 14px;
    --fi-radius-pill: 999px;
}

.contact-page {
    background-color: #ffffff;
    padding: 60px 0 80px;
    font-family: var(--ff-sans), sans-serif;
}

.contact-page-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

/* Header */

.contact-heading {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    color: #111111;
}

@media (min-width: 768px) {
    .contact-heading {
        font-size: 36px;
    }
}

.contact-subtitle {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--cozzicotton-primary);
}

/* Sections */

.contact-section {
    margin-top: 60px;
}

.contact-section-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111111;
}

.contact-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-default);
    margin-bottom: 16px;
}

/* Email block */

.contact-email {
    display: inline-block;
    margin-top: 4px;
    font-size: 22px;
    font-weight: 500;
    color: var(--cozzicotton-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-email:hover,
.contact-email:focus {
    color: var(--cozzicotton-primary-hover);
    border-bottom-color: currentColor;
}

.contact-note {
    margin-top: 16px;
    font-size: 13px;
    color: #888888;
}

/* Social icons */

.contact-social-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.contact-social-item {
    display: inline-block;
    margin: 0 18px;
}

.contact-social-link {
    display: inline-block;
    text-decoration: none;
}

.contact-social-icon {
    font-size: 28px;
    color: #888888;
    transition: color 0.25s ease, transform 0.25s ease;
}

.contact-social-link:hover .contact-social-icon,
.contact-social-link:focus .contact-social-icon {
    color: var(--cozzicotton-primary);
    transform: translateY(-2px);
}
