/* Coordonnées — accueil et page contact */
.site-contact {
  padding: 3.5rem 1.5rem;
  background: linear-gradient(180deg, #fffbf5 0%, #fdf8f0 100%);
}

.site-contact__inner {
  max-width: var(--site-max-width, 1200px);
  margin: 0 auto;
  text-align: center;
}

.site-contact h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #392800;
  letter-spacing: -0.02em;
}

.site-contact__lead {
  margin: 0 auto 1rem;
  max-width: 36rem;
  color: #6b5d4a;
  font-size: 1rem;
  line-height: 1.6;
}

.site-contact__form-link {
  margin: 0 auto 1.5rem;
}

.site-contact__form-link a {
  font-weight: 600;
  color: #aa6900;
}

.site-contact__grid,
.contact-details {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 280px));
  justify-content: center;
  width: 100%;
  text-align: center;
}

.contact-details {
  margin-bottom: 1.75rem;
}

.site-contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1.25rem 1.15rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(57, 40, 0, 0.1);
  box-shadow: 0 4px 18px rgba(44, 36, 22, 0.05);
  color: #2c2416;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-contact__card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 174, 0, 0.45);
  box-shadow: 0 10px 28px rgba(44, 36, 22, 0.08);
  text-decoration: none;
  color: #2c2416;
}

.site-contact__card-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fdf8f0;
  color: #aa6900;
}

.site-contact__card-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.site-contact__card--whatsapp .site-contact__card-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
}

.site-contact__card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b5d4a;
}

.site-contact__card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #392800;
  word-break: break-word;
}


.contact-details:empty {
  display: none;
}
