/* ── Contact page ────────────────────────────────────────────────────────── */

.cnt-section {
  min-height: 100vh;
  padding: 120px 0 80px;
}

.cnt-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

/* ── Colonne gauche ── */
.cnt-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 24px;
}

.cnt-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.0;
  color: var(--olive);
  margin-bottom: 32px;
}

.cnt-title em {
  font-style: italic;
  font-weight: 900;
  color: var(--red);
}

.cnt-intro {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 360px;
}

/* ── Colonne droite ── */
.cnt-right {
  padding-top: 48px;
}

.cnt-fields {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cnt-field-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  opacity: 0.6;
  margin-bottom: 6px;
}

.cnt-field-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--olive);
  line-height: 1.25;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

a.cnt-field-value:hover { color: var(--red); }

.cnt-linkedin {
  display: flex;
  align-items: center;
}

.cnt-linkedin:hover { color: #0A66C2; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .cnt-section { padding: 96px 0 64px; }

  .cnt-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .cnt-right { padding-top: 0; }
  .cnt-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}
