/* ══════════════════════════════════════
   contact.css — Section contact
══════════════════════════════════════ */

.cgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Texte intro */
.cl {
  font-family: 'Space Mono', monospace;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.85rem;
}

.cl strong {
  color: var(--text);
}

/* Stack de liens sociaux */
.ss {
  display: contents;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.srow {
  background: var(--card);
  padding: 1.05rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
  color: inherit;
  gap: 1rem;
}

.srow:hover {
  background: var(--ch);
}

.srl {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Icône */
.sic {
  width: 33px;
  height: 33px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}

.srow:hover .sic {
  border-color: var(--a);
  color: var(--a);
}

.snm {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.shd {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  color: var(--muted);
  margin-top: 2px;
}

.sarr {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
}

.srow:hover .sarr {
  color: var(--a);
  transform: translateX(4px);
}

/* Carte fiche rapide */
.qfc {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.7rem;
  transition: var(--transition);
}

.qft {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--a);
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}

.qr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  gap: 1rem;
}

.qr:last-child {
  border-bottom: none;
}

.qk { color: var(--muted); }

.qv {
  color: var(--text);
  text-align: right;
  line-height: 1.5;
}

.qv a {
  color: var(--a);
}

.qv a:hover {
  text-decoration: underline;
}

.qv.ac { color: var(--a); }
