    /* ── Contact page (ported from racerr Redesign hero/section/card patterns) ── */

    .ct-wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

    /* Hero */
    .ct-hero {
        padding: 56px 0 24px;
        position: relative;
        overflow: hidden;
    }
    .ct-tag {
        display: inline-flex; align-items: center; gap: 10px;
        padding: 6px 14px 6px 6px;
        border: 1px solid var(--line);
        border-radius: 999px;
        font-size: 12.5px;
        color: var(--fg-mute);
        margin-bottom: 28px;
    }
    .ct-tag .dot {
        width: 7px; height: 7px; border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 20%, transparent);
    }
    .ct-tag b { color: var(--fg); font-weight: 600; }
    .ct-tag .mono {
        font-family: var(--f-mono);
        font-size: 11px;
        padding: 3px 8px;
        background: var(--bg2);
        border-radius: 999px;
    }

    .ct-hero h1 {
        font-family: var(--f-display);
        font-weight: 700;
        font-size: clamp(48px, 7.6vw, 128px);
        line-height: 0.92;
        letter-spacing: -0.035em;
        margin: 0 0 26px;
        text-wrap: balance;
        max-width: 14ch;
    }
    .ct-hero h1 em {
        font-style: normal;
        color: var(--accent);
        font-weight: 700;
    }
    .ct-hero .lede {
        max-width: 580px;
        font-size: 18px;
        line-height: 1.5;
        color: var(--fg-mute);
        margin: 0 0 36px;
    }

    /* Hero meta strip — response time / scope / availability */
    .ct-hero-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 40px;
        border-top: 1px solid var(--line-soft);
        padding-top: 32px;
        max-width: 520px;
    }
    .ct-hero-meta-item .lbl {
        font-family: var(--f-mono);
        font-size: 11px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--fg-mute);
        margin-bottom: 10px;
    }
    .ct-hero-meta-item .val {
        font-family: var(--f-display);
        font-weight: 700;
        font-size: 22px;
        letter-spacing: -0.015em;
        line-height: 1.15;
    }
    .ct-hero-meta-item .val small {
        font-family: var(--f-mono);
        font-size: 12px;
        color: var(--fg-mute);
        font-weight: 400;
        margin-left: 4px;
    }
    @media (max-width: 720px) {
        .ct-hero-meta { grid-template-columns: 1fr; gap: 18px; }
    }

    /* Section primitives */
    .ct-section { padding: 96px 0 0; }
    .ct-section-head {
        display: grid;
        grid-template-columns: 1fr 1.6fr;
        gap: 48px;
        align-items: flex-start;
        margin-bottom: 36px;
    }
    .ct-eyebrow {
        font-family: var(--f-mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--fg-dim);
    }
    .ct-section-head h2 {
        font-family: var(--f-display);
        font-weight: 700;
        font-size: clamp(28px, 3.2vw, 44px);
        line-height: 1.02;
        letter-spacing: -0.025em;
        margin: 12px 0 0;
        text-wrap: balance;
    }
    .ct-section-head .body {
        font-size: 17px;
        line-height: 1.6;
        color: var(--fg-mute);
        max-width: 560px;
    }
    .ct-section-head .body p { margin: 0 0 14px; }
    .ct-section-head .body p:last-child { margin-bottom: 0; }
    @media (max-width: 860px) {
        .ct-section-head { grid-template-columns: 1fr; gap: 16px; }
    }

    /* Channel grid — 2x2 on desktop */
    .ct-channels {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    @media (max-width: 720px) {
        .ct-channels { grid-template-columns: 1fr; }
    }
    .ct-channel {
        position: relative;
        padding: 28px 28px 26px;
        background: var(--bg2);
        border: 1px solid var(--line-soft);
        border-radius: 14px;
        display: flex; flex-direction: column;
        transition: background .2s, border-color .2s, transform .2s;
        text-decoration: none;
        color: var(--fg);
    }
    .ct-channel:hover {
        background: var(--bg3);
        border-color: var(--line);
        transform: translateY(-3px);
    }
    .ct-channel:hover .ct-channel-arrow { color: var(--accent); transform: translate(4px, -4px); }
    .ct-channel-head {
        display: flex; justify-content: space-between; align-items: flex-start;
        gap: 16px;
        margin-bottom: 18px;
    }
    .ct-channel .num {
        font-family: var(--f-mono);
        font-size: 11px;
        letter-spacing: 0.16em;
        color: var(--accent);
    }
    .ct-channel-arrow {
        color: var(--fg-dim);
        font-family: var(--f-mono);
        font-size: 16px;
        line-height: 1;
        transition: color .2s, transform .2s;
    }
    .ct-channel h3 {
        font-family: var(--f-display);
        font-weight: 700;
        font-size: 24px;
        letter-spacing: -0.02em;
        line-height: 1.1;
        margin: 0 0 8px;
    }
    .ct-channel p {
        margin: 0 0 22px;
        color: var(--fg-mute);
        font-size: 14px;
        line-height: 1.55;
    }
    .ct-channel-email {
        margin-top: auto;
        padding-top: 18px;
        border-top: 1px solid var(--line-soft);
        font-family: var(--f-mono);
        font-size: 13px;
        color: var(--accent);
        letter-spacing: -0.01em;
        word-break: break-word;
    }

    /* Aside row — what we can't help with + response time */
    .ct-notes {
        margin-top: 96px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        border-top: 1px solid var(--line-soft);
    }
    .ct-note {
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 32px;
        padding: 28px 0;
        border-bottom: 1px solid var(--line-soft);
        align-items: baseline;
    }
    @media (max-width: 720px) {
        .ct-note { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
    }
    .ct-note .nkey {
        font-family: var(--f-mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--fg-dim);
    }
    .ct-note .ntext {
        font-size: 15px;
        line-height: 1.55;
        color: var(--fg);
    }
    .ct-note .ntext strong {
        font-weight: 600;
        color: var(--fg);
    }
    .ct-note .ntext .quiet {
        color: var(--fg-mute);
    }

    /* CTA strip */
    .ct-cta {
        margin-top: 80px;
        margin-bottom: 24px;
        padding: 44px 48px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background:
            radial-gradient(circle at 12% 100%, color-mix(in oklch, var(--accent) 22%, transparent), transparent 55%),
            var(--bg2);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 32px;
        align-items: center;
    }
    @media (max-width: 720px) {
        .ct-cta { grid-template-columns: 1fr; padding: 32px 28px; gap: 22px; }
    }
    .ct-cta .eyebrow {
        font-family: var(--f-mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 10px;
    }
    .ct-cta h2 {
        font-family: var(--f-display);
        font-weight: 700;
        font-size: clamp(26px, 3vw, 38px);
        letter-spacing: -0.025em;
        line-height: 1.05;
        margin: 0 0 6px;
        text-wrap: balance;
    }
    .ct-cta p {
        margin: 0;
        color: var(--fg-mute);
        font-size: 15px;
        max-width: 480px;
    }
    .ct-cta-actions { display: inline-flex; gap: 10px; flex-wrap: wrap; }
    .ct-btn {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 13px 22px;
        border-radius: 12px;
        font: 700 15px var(--f-body);
        text-decoration: none;
        border: 1px solid transparent;
        transition: transform .15s ease, background .15s, border-color .15s;
        cursor: pointer;
    }
    .ct-btn-accent { background: var(--accent); color: var(--accent-ink); }
    .ct-btn-accent:hover { transform: translateY(-1px); }
    .ct-btn-ghost { background: transparent; color: var(--fg); border-color: var(--line); }
    .ct-btn-ghost:hover { background: var(--bg3); border-color: var(--fg-mute); }
