/* ==========================================================================
   NIGHTWING — CONTACT + FOOTER
   ========================================================================== */

.contact-panel {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid var(--color-border);
  background: linear-gradient(160deg, var(--color-surface) 0%, var(--ink-950) 100%);
  padding: clamp(var(--sp-8), 6vw, var(--sp-11));
  overflow: hidden;
}
.contact-panel::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: var(--grad-glow);
  opacity: 0.6;
  pointer-events: none;
}

.contact-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.contact-heading { font-size: var(--fs-h2); font-weight: 700; color: var(--white); }
.contact-text { margin-top: var(--sp-4); color: var(--color-text-muted); font-size: var(--fs-md); line-height: 1.7; max-width: 46ch; }

.contact-cta-row { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-7); }

.contact-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-link-card {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  transition: border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
}
.contact-link-card:hover { border-color: var(--line-blue); background: rgba(20,112,214,0.06); transform: translateX(4px); }
.contact-link-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--ink-800);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent-bright);
}
.contact-link-icon svg { width: 19px; height: 19px; }
.contact-link-meta { display: flex; flex-direction: column; min-width: 0; }
.contact-link-label { font-size: var(--fs-2xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-500); font-family: var(--font-mono); }
.contact-link-value { font-weight: 600; color: var(--white); font-size: var(--fs-sm); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-link-arrow { margin-left: auto; width: 16px; height: 16px; color: var(--grey-500); flex-shrink: 0; }

/* ---- Footer ---------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--color-border);
  padding-block: var(--sp-8);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}
.footer-brand { display: flex; align-items: center; gap: var(--sp-3); }
.footer-brand-mark { width: 26px; height: 26px; }
.footer-brand-word { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-sm); }
.footer-tag { color: var(--grey-500); font-size: var(--fs-xs); margin-top: var(--sp-1); }
.footer-meta { display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap; }
.footer-copy { color: var(--grey-500); font-size: var(--fs-xs); }
.footer-links { display: flex; gap: var(--sp-5); }
.footer-links a { color: var(--grey-500); font-size: var(--fs-xs); transition: color var(--dur-fast); }
.footer-links a:hover { color: var(--color-accent-bright); }
