/* ============================================================
   HEKLA — Section Contact / CTA projet
   ============================================================ */

.contact-cta-section {
  position: relative;
  z-index: 20;
  background: var(--c-bg);
  margin-top: -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px 100px;
}


/* ── Logo centré — déborde sur la section précédente ─────── */
.contact-cta__logo-wrap {
  margin-top: -105px; /* remonte exactement de la moitié du logo (210px / 2) */
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.contact-cta__logo {
  width: 210px;
  height: 210px;
  display: block;
}

/* ── Titre ────────────────────────────────────────────────── */
.contact-cta__title {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 3vw, 40px);
  font-weight: 400;
  font-style: normal;
  color: var(--c-black);
  margin-bottom: 32px;
  line-height: 1.1;
}

/* ── CTA — même style que expertises ─────────────────────── */
.contact-cta__btn {
  display: inline-block;
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 20px;
  transition: background 0.25s ease;
}

.contact-cta__btn:hover {
  background: var(--c-orange);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-cta__logo-wrap { margin-top: -60px; }
  .contact-cta__logo { width: 120px; height: 120px; }
}
