/* ── Let's connect ────────────────────────────────────────────────
   Sits at the bottom of every page, just above the © footer.
   Visually merges with the footer (same white bg, no separator
   between them). The border-top marks the start of this combined
   "site bottom" block.

   Content is constrained to max-width: 1100px and LEFT-ALIGNED.
   Same treatment on every page (homepage / case studies / work /
   writing) for visual consistency.
   ──────────────────────────────────────────────────────────────── */

.lets-connect {
    background: #fff;
    border-top: 1px solid #d4d4cb;
    padding: 4rem 24px 1.5rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.lets-connect-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.lets-connect h2 {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--text, #111);
    text-align: left;
}

.lets-connect p {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted, var(--text-soft, #555));
    margin: 0 0 28px;
    max-width: 720px;
}

.lets-connect-links {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}

.lets-connect-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted, var(--text-soft, #555));
    text-decoration: none;
    padding: 12px 20px;
    border: 1px solid var(--border, #e5e5e0);
    border-radius: 12px;
    background: var(--bg-card, #fff);
    transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.lets-connect-item:hover {
    color: var(--accent, #003566);
    border-color: var(--accent, #003566);
    transform: translateY(-2px);
}

.lets-connect-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
