/* PHPC contact block — PR 2.9 (HANDOFF §2.9)
   Mobile-first. Single column → 2-col at 992px (info left, form right). */

.contact--section {
    background: var(--ink);
    color: #fff;
    padding: 60px 0;
}

@media (min-width: 992px) {
    .contact--section {
        padding: 120px 0;
    }
}

.contact--container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: stretch;
}

@media (min-width: 992px) {
    .contact--container {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 80px;
    }
}

/* Info column flexes so compliance can be pushed to the bottom */
.contact--info {
    display: flex;
    flex-direction: column;
}

/* ---------- Info column ---------- */
.contact--eyebrow {
    font-family: var(--ff-sans);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: var(--track-eyebrow);
    text-transform: uppercase;
    color: var(--signal);
    margin: 0 0 18px;
}

.contact--form-title {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(28px, 4.5vw, 52px);
    line-height: 1.05;
    letter-spacing: var(--track-tight-2);
    margin: 0 0 24px;
    text-wrap: balance;
    max-width: 14ch;
    color: #fff;
}

.contact--form-title i {
    color: var(--signal);
    font-style: italic;
    font-weight: inherit;
}

.contact--copy {
    font-family: var(--ff-sans);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 32px;
    max-width: 42ch;
}

.contact--copy i {
    color: var(--signal);
    font-style: italic;
}

/* ---------- Contact info rows (label / value pairs) ---------- */
.contact--contact {
    display: grid;
    gap: 14px;
    padding-top: 28px;
    margin-bottom: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact--contact-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    align-items: baseline;
}

.contact--contact-label {
    font-family: var(--ff-sans);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.contact--contact-value {
    font-family: var(--ff-display);
    font-size: 17px;
    color: #fff;
}

.contact--contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color var(--dur-fast);
}

.contact--contact-value a:hover {
    color: var(--signal);
}

/* ---------- Social icons ---------- */
.contact--social {
    display: flex;
    gap: 10px;
    margin: 0;
}

.contact--social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #fff;
    padding: 0;
    transition: background var(--dur-std), border-color var(--dur-std);
}

.contact--social a:hover {
    background: var(--signal);
    border-color: var(--signal);
    color: #fff;
}

.contact--social svg {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* ---------- Form panel (translucent over ink ground) ---------- */
.contact--form {
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 992px) {
    .contact--form {
        padding: 40px;
    }
}

/* ---------- Compliance (sits at the bottom of the info column) ---------- */
.contact--compliance {
    font-family: var(--ff-sans);
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
    margin: 40px 0 0;
}

@media (min-width: 992px) {
    .contact--compliance {
        margin-top: auto;
        padding-top: 40px;
    }
}

.contact--compliance a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    transition: color var(--dur-fast);
}

.contact--compliance a:hover {
    color: var(--signal);
}

.contact--compliance p {
    margin: 0 0 0.6em;
}

.contact--compliance p:last-child {
    margin-bottom: 0;
}
