/* ---------- Contact ---------- */

.contact-main {
  padding: 72px 0 96px;
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.contact-card h1 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3.6vw, 32px);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.contact-card p {
  margin: 0 0 36px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
}

.contact-row:last-child {
  border-bottom: 1px solid var(--hairline);
}

.contact-row .label {
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 100px;
  text-align: right;
}

.contact-row a {
  text-decoration: none;
  color: var(--ink);
  transition: color 0.15s ease;
}

.contact-row a:hover {
  color: var(--ink-soft);
}

@media (max-width: 480px) {
  .contact-row { flex-direction: column; gap: 4px; }
  .contact-row .label { width: auto; text-align: center; }
}
