/*----------------- HERO · RADIO ---------------*/

.contact-hero {
  position: relative;
  padding: 64px var(--pad) 48px;
}

.contact-index {
  position: absolute;
  top: 18px;
  left: var(--pad);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.contact-hero-grille {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}

.radio-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background-color: var(--ink);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.radio-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--graphiva-yellow);
}

.contact-titre {
  margin: 24px 0 0;
  font-size: 124px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.contact-titre-point {
  color: var(--graphiva-yellow);
}

.contact-desc {
  /* 22px bas = la marge résiduelle du paragraphe dans la maquette (1em à 22px),
       elle fixe la hauteur du hero et l'alignement bas du bulletin */
  margin: 28px 0 22px;
  max-width: 620px;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-60);
}

.contact-desc strong {
  color: var(--ink);
}

/*----------------- BULLETIN MÉTÉO ---------------*/

.bulletin {
  background-color: var(--paper);
  border: var(--hairline);
  padding: 24px;
}

.bulletin-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-60);
}

.bulletin-titre {
  margin: 8px 0 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.bulletin-accent {
  color: var(--graphiva-yellow);
}

.bulletin-liste {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--ink-15);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bulletin-ligne {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.bulletin-ligne dt {
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.bulletin-ligne dd {
  margin: 0;
  font-weight: 700;
}

/*----------------- POUR QUOI TU M'ÉCRIS ---------------*/

.motifs-zone {
  padding: 48px var(--pad) 0;
}

.motifs-label {
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-60);
}

.motifs-grille {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.motif-carte {
  display: block;
  background-color: var(--paper);
  border: var(--hairline);
  padding: 28px;
  text-decoration: none;
  color: var(--ink);
}

.motif-titre {
  margin: 18px 0 10px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.motif-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-60);
}

.motif-carte .btn-lien {
  margin-top: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/*----------------- FORMULAIRE + CANAUX ---------------*/

.contact-bas {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding: 64px var(--pad);
}

.formulaire {
  background-color: var(--paper);
  border: var(--hairline);
  padding: 36px;
}

.champ-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.champ {
  margin-top: 20px;
}

.champ-duo .champ {
  margin-top: 0;
}

.champ label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-60);
}

.champ input,
.champ textarea {
  width: 100%;
  border: 0;
  border-bottom: var(--hairline);
  padding: 10px 0;
  font-family: inherit;
  font-size: 16px;
  background-color: transparent;
  color: var(--ink);
  outline: none;
  resize: vertical;
}

.champ input::placeholder,
.champ textarea::placeholder {
  color: var(--ink-60);
}

/* Leurre anti-spam Netlify : les robots le remplissent, les humains ne le voient pas */
.champ-leurre {
  display: none;
}

.formulaire-bas {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.formulaire-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-60);
}

.btn-envoi {
  padding: 18px 32px;
  background-color: var(--graphiva-yellow);
  border: var(--hairline);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  cursor: pointer;
}

/*----------------- AUTRES CANAUX ---------------*/

.canaux {
  display: flex;
  flex-direction: column;
}

.canal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1.5px solid var(--ink-15);
  text-decoration: none;
  color: var(--ink);
}

.canal-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-60);
}

.canal-valeur {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.canal-note {
  margin-top: 2px;
  font-size: 12px;
  color: var(--ink-60);
}

.canal-fleche {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
}

/*----------------- PIED DE PAGE LÉGER ---------------*/

.footer-leger {
  padding: 36px var(--pad);
  border-top: var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-60);
}

.footer-pavillons {
  display: flex;
  gap: 4px;
}
