.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-panel { border: 1px solid var(--line-soft); border-radius: var(--r-xl); background: var(--bg); box-shadow: var(--shadow-pop); padding: clamp(26px, 3.6vw, 42px); }
.direct { display: grid; gap: 20px; margin-top: 30px; }
.direct .d h3 { font-size: 1.02rem; margin-bottom: 3px; }
.direct .d p { font-size: 0.9rem; }
.direct .d a { font-family: var(--font-mono); font-size: 0.88rem; color: var(--ember); font-weight: 500; }
.reply-note { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--muted); margin-top: 28px; }
.reply-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ember); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1);} 50% { opacity:0.45; transform:scale(0.82);} }
