.contact-hero {
  position: relative;
  min-height: 65vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  overflow: hidden;

  padding: 4rem 1.5rem;
}

.contact-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 0;
}

.contact-overlay {
  position: absolute;
  inset: 0;

  background: rgba(51, 41, 31, 0.62);

  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;

  max-width: 900px;
  color: white;
}

.contact-content h1 {
  color: white;
}

.contact-content p {
  color: white;
}

.contact-content .eyebrow {
  color: var(--soft-gold);
}

.contact-intro,
.swarm-checklist,
.friendly-note {
  text-align: center;
  max-width: 900px;
}

.contact-intro p,
.friendly-note p {
  font-size: 1.1rem;
}

.contact-grid {
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(51, 41, 31, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(51, 41, 31, 0.12);
}

.contact-card h2 {
  color: var(--forest);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 2rem;
}

.checklist-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: var(--earth);
  box-shadow: 0 8px 18px rgba(51, 41, 31, 0.06);
}

.friendly-note {
  background: #fffdf7;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(51, 41, 31, 0.08);
}


.primary-contact {
  border-top: 5px solid var(--honey);
}

.swarm-card {
  border-top: 5px solid var(--forest);
}

.contact-card .button {
  margin: 0.45rem;
}

.contact-email {
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: var(--deep-honey);
  font-size: 1.1rem;
  word-break: break-word;
}

.small-note {
  font-size: 0.95rem;
  opacity: 0.85;
}

.contact-card button.button {
  border: none;
  cursor: pointer;
}

@media (max-width: 850px) {
  .contact-hero {
    padding: 4rem 1.2rem;
  }

  .contact-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }
}

.copy-status {
  min-height: 1.5rem;
  margin: 0.75rem 0 0;
  color: var(--forest);
  font-family: Arial, sans-serif;
  font-weight: bold;
}
