/* Contact page — email card layout */

.contact-hero {
  padding: 72px 40px 48px;
  background: linear-gradient(180deg, var(--brand-offwhite) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.contact-hero .sec-inner {
  max-width: 640px;
}

.contact-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-hero-lead {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.contact-body {
  padding: 56px 40px 96px;
  background: var(--brand-offwhite);
}

.contact-body .sec-inner {
  max-width: 520px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 40px 36px 44px;
  text-align: center;
  box-shadow:
    0 1px 2px rgba(26, 20, 16, 0.04),
    0 8px 32px rgba(26, 20, 16, 0.08);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-cream);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--brand-dark);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.contact-email-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  word-break: break-word;
  letter-spacing: -0.01em;
}

.contact-email-link:hover {
  color: var(--brand-warm);
  text-decoration: underline;
}

.contact-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--brand-cream);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.45;
  text-align: center;
}

.contact-note-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

@media (max-width: 640px) {
  .contact-hero,
  .contact-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-card {
    padding: 32px 24px 36px;
    border-radius: 16px;
  }

  .contact-note {
    border-radius: 14px;
    flex-direction: row;
    padding: 14px 16px;
  }
}
