.contact-page {
  display: grid;
  min-height: calc(100vh - 8rem);
  place-items: start center;
  padding: clamp(1rem, 3vw, 2rem) 1.25rem 4rem;
}

.contact-card {
  width: min(44rem, 100%);
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid color-mix(in srgb, var(--ink, #17342c) 14%, transparent);
  border-radius: 2rem;
  background: var(--surface, #fffdf5);
  box-shadow: 0 1.5rem 4rem rgba(23, 52, 44, 0.12);
}

.contact-card h1 {
  margin: 0 0 1rem;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.25rem, 8vw, 4rem);
  line-height: 1;
}

.contact-card p {
  color: var(--muted, #54655e);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-email {
  color: var(--ink, #17342c);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent, #d45733) !important;
  font-size: 0.8rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--ink, #17342c);
  font-weight: 800;
  text-decoration: none;
}

.contact-actions .contact-primary {
  border-color: var(--ink, #17342c);
  background: var(--ink, #17342c);
  color: white;
}
