/* ══════════════════════════════════════
   CONTACT US — page-specific styles
   Built on top of about.css tokens (--red, --purple, --cream, --white, --fa)
══════════════════════════════════════ */

.ct-hero {
    padding: 160px 24px 60px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.ct-eyebrow {
    display: inline-block;
    color: var(--red);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: rgba(228,0,43,0.12);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.ct-hero h1 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 16px;
}
.ct-hero p {
    font-size: 16.5px;
    line-height: 1.8;
    opacity: 0.8;
}

.ct-section {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ct-card {
    background: rgba(252,242,223,0.04);
    border: 1px solid rgba(252,242,223,0.12);
    border-radius: 22px;
    padding: 32px;
}

.ct-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(228,0,43,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ct-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ct-card p, .ct-card a {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.85;
    color: inherit;
    text-decoration: none;
}

.ct-card a:hover { color: var(--red); opacity: 1; }

.ct-card.ct-full {
    grid-column: 1 / -1;
}

.ct-legal-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(252,242,223,0.1);
    font-size: 15px;
    gap: 16px;
}
.ct-legal-row:last-child { border-bottom: none; }
.ct-legal-label { opacity: 0.6; flex-shrink: 0; }
.ct-legal-value { font-weight: 500; text-align: left; }

@media (max-width: 640px) {
    .ct-grid { grid-template-columns: 1fr; }
    .ct-hero { padding: 130px 20px 50px; }
    .ct-legal-row { flex-direction: column; gap: 4px; }
    .ct-legal-value { text-align: right; }
}