/* ==========================================================================
   contact.css — shared footer/contact component ("Contact" in Figma)
   Used by index.html and case-studies/*.html, with contact.js for the
   copy-to-clipboard behavior. Tokens come from tokens.css.
   ========================================================================== */

.contact {
  background: var(--black);
  width: 100vw;
  padding: var(--space-1600) 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1600);
  text-align: center;
}

.contact .display {
  color: var(--muted-on-dark);
  font-size: var(--text-headline-size);
  line-height: var(--text-headline-leading);
  letter-spacing: var(--text-headline-tracking);
}

.contact .accent {
  color: var(--ivory-dark);
  font-size: var(--text-headline-accent-size);
  line-height: var(--text-headline-accent-leading);
  letter-spacing: var(--text-headline-accent-tracking);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: var(--space-400);
  width: 350px;
  max-width: 100%;
  height: 56px;
}

.email-pill {
  flex: 1;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-200);
  background: var(--ivory-dark);
  border: none;
  border-radius: var(--radius-pill);
  padding: var(--space-400) var(--space-600);
  font-family: var(--font-sans);
  font-size: var(--text-md-size);
  line-height: var(--text-md-leading);
  letter-spacing: var(--text-md-tracking);
  color: var(--black);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease;
}
.email-pill:hover { transform: scale(1.05); }
.email-pill svg { width: 20px; height: 20px; flex-shrink: 0; }

.linkedin-btn {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  overflow: hidden;
  display: block;
  transition: transform 0.2s ease;
}
.linkedin-btn:hover { transform: scale(1.05); }
.linkedin-btn img { width: 100%; height: 100%; }
