/* ============================================================
   Zerno — contact / early access
   ============================================================ */

.contact-hero { padding: 72px 0 8px; }

.contact-hero .section-head { margin-bottom: 24px; }

.contact-hero h1 {
    position: relative;
    padding-bottom: 20px;
}

.contact-hero h1::after {
    content: "";
    position: absolute;
    left: 2px;
    bottom: 0;
    width: 52px;
    height: 5px;
    border-radius: 3px;
    background: var(--wheat);
}

.contact-body { padding: 32px 0 96px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: start;
}

.contact-grid > * { min-width: 0; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-form-card {
    background: var(--panel);
    border-radius: var(--radius-l);
    padding: 36px;
}

@media (max-width: 640px) {
    .contact-form-card { padding: 24px; }
}

.contact-side { display: flex; flex-direction: column; gap: 18px; }

.side-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: 26px;
}

.side-card h3 { margin: 14px 0 8px; font-size: 1.06rem; }

.side-card .ico-tile ~ h3 { margin-top: 14px; }

.side-card h3:first-child { margin-top: 0; }

.side-card p { font-size: .93rem; margin-bottom: 6px; }

.side-card .muted { color: var(--muted); }

.side-mail { font-size: 1.05rem; font-weight: 700; }

.next-steps {
    margin: 0;
    padding-left: 1.2em;
    font-size: .93rem;
    color: var(--text);
}

.next-steps li { margin-bottom: 10px; }
.next-steps li:last-child { margin-bottom: 0; }
.next-steps strong { color: var(--ink); }

/* Legal contact details — contact page */
.side-addr{
    font-style: normal;
    line-height: 1.7;
    margin: 0 0 .75rem;
}
.side-tel{
    font-weight: 600;
    text-decoration: none;
}
.side-tel:hover{ text-decoration: underline; }