/* ═══════════════════════════════════════════════════════════════════════════
   Contact Page
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Page wrapper ──────────────────────────────────────────────────────────── */

.ct-page {
    padding: 5rem 0 9rem;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */

.ct-hero {
    padding-bottom: 4.5rem;
    margin-bottom: 5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ct-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.ct-pill {
    display: inline-flex;
    align-items: center;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.28rem 0.75rem;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.06);
    color: #555;
}

.ct-hero__title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #111;
    margin: 0 0 1.25rem;
}

.ct-hero__sub {
    font-size: 1rem;
    color: #888;
    max-width: 48ch;
    margin: 0 0 2.75rem;
    line-height: 1.7;
}

/* ── Availability / stats row ──────────────────────────────────────────────── */

.ct-hero__meta {
    display: flex;
    gap: 3rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.ct-meta-item {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.1rem;
}

.ct-meta-val {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #111;
}

.ct-meta-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c0c0c0;
}

/* Availability badge with pulse */
.ct-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem 0.4rem 0.65rem;
    border-radius: 100px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #16a34a;
    align-self: center;
}

.ct-status__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: ct-pulse 2.4s ease-in-out infinite;
}

@keyframes ct-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ── Body layout ───────────────────────────────────────────────────────────── */

.ct-body {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 5rem;
    align-items: start;
}

/* ── Left — reasons ────────────────────────────────────────────────────────── */

.ct-reasons__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 0.875rem;
    margin-bottom: 0.25rem;
    border-bottom: 1.5px solid #111;
}

.ct-reasons__label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #111;
}

.ct-reasons__count {
    font-size: 0.62rem;
    font-weight: 600;
    color: #ccc;
}

.ct-reason {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ct-reason.visible {
    opacity: 1;
    transform: translateY(0);
}

.ct-reason__num {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #d0d0d0;
    padding-top: 0.25rem;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    width: 1.5rem;
}

.ct-reason__body {}

.ct-reason__title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #111;
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.ct-reason__desc {
    font-size: 0.83rem;
    line-height: 1.68;
    color: #999;
    margin: 0;
}

/* ── Right — LinkedIn card ─────────────────────────────────────────────────── */

.ct-card-wrap {
    position: sticky;
    top: 7rem;
}

.ct-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.75rem;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ct-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.ct-card__platform {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ct-card__platform i {
    font-size: 0.9rem;
    color: #bbb;
}

.ct-card__name {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #111;
    margin: 0 0 0.4rem;
}

.ct-card__handle {
    font-size: 0.82rem;
    font-weight: 500;
    color: #bbb;
    margin: 0 0 2rem;
    letter-spacing: 0.01em;
}

.ct-card__divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.07);
    margin-bottom: 1.75rem;
}

.ct-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    border-bottom: none;
    padding: 0.9rem 1.4rem;
    border: 1.5px solid #111;
    border-radius: 100px;
    transition: background 0.2s ease, color 0.2s ease, gap 0.2s ease;
    align-self: flex-start;
    margin-bottom: 1.25rem;
}

.ct-card__cta:hover {
    background: #111;
    color: #f5f5f5;
    gap: 0.75rem;
    opacity: 1;
}

.ct-card__note {
    font-size: 0.7rem;
    font-weight: 500;
    color: #ccc;
    letter-spacing: 0.02em;
    margin: 0;
}

/* ── Dark mode ─────────────────────────────────────────────────────────────── */

body.dark-mode .ct-hero { border-color: rgba(255, 255, 255, 0.06); }
body.dark-mode .ct-hero__title  { color: #f0f0f0; }
body.dark-mode .ct-hero__sub    { color: #666; }
body.dark-mode .ct-meta-val     { color: #f0f0f0; }

body.dark-mode .ct-pill {
    background: rgba(255, 255, 255, 0.08);
    color: #aaa;
}

body.dark-mode .ct-status {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

body.dark-mode .ct-reasons__header {
    border-color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .ct-reasons__label { color: #e0e0e0; }
body.dark-mode .ct-reasons__count { color: #444; }

body.dark-mode .ct-reason { border-color: rgba(255, 255, 255, 0.06); }
body.dark-mode .ct-reason__num   { color: #3a3a3a; }
body.dark-mode .ct-reason__title { color: #f0f0f0; }
body.dark-mode .ct-reason__desc  { color: #666; }

body.dark-mode .ct-card {
    background: #161616;
    border-color: rgba(255, 255, 255, 0.07);
}

body.dark-mode .ct-card__platform { color: #444; }
body.dark-mode .ct-card__platform i { color: #444; }
body.dark-mode .ct-card__name   { color: #f0f0f0; }
body.dark-mode .ct-card__handle { color: #555; }
body.dark-mode .ct-card__divider { background: rgba(255, 255, 255, 0.06); }

body.dark-mode .ct-card__cta {
    color: #f0f0f0;
    border-color: rgba(255, 255, 255, 0.4);
}

body.dark-mode .ct-card__cta:hover {
    background: #f0f0f0;
    color: #111;
    border-color: #f0f0f0;
}

body.dark-mode .ct-card__note { color: #444; }

/* ── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 860px) {
    .ct-body {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .ct-card-wrap {
        position: static;
    }
}

@media (max-width: 560px) {
    .ct-page { padding: 3rem 0 5rem; }
    .ct-hero { margin-bottom: 3rem; padding-bottom: 3rem; }
    .ct-hero__meta { gap: 1.75rem; }
    .ct-meta-val { font-size: 1.1rem; }
    .ct-card { padding: 2rem; }
}
