/*
 * contact.css — PsyRisso Desktop
 * Styles spécifiques à la page Contact (refonte, sans Hero).
 * Repris tel quel du mockup validé (contact.html).
 * Le système de bandes générique (.bande, .cadre) est dans layout.css.
 */

.ctc-h2 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--bleu);
  line-height: 1.3;
  margin: 0 0 0.4rem;
}
.ctc-sub {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: #5a5a5a;
  margin: 0 0 2rem;
}
.ctc-section-label {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dore);
  margin-bottom: 0.7rem;
}

/* ── Grille coordonnées / photo ── */
.ctc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.ctc-coord-item { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.2rem; }
.ctc-coord-icon {
  width: 34px; height: 34px;
  background: rgba(27,59,53,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.ctc-coord-icon svg { width: 17px; height: 17px; stroke: var(--bleu); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ctc-coord-icon-link { cursor: pointer; transition: background 0.15s; }
.ctc-coord-icon-link:hover { background: rgba(27,59,53,0.16); }

.ctc-coord-texte { font-family: Arial, sans-serif; font-size: 0.85rem; color: #3a3a3a; line-height: 1.55; }
.ctc-coord-texte strong {
  display: block; font-size: 0.7rem; font-weight: normal; color: var(--bleu);
  margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.ctc-coord-texte a { color: var(--ocre); text-decoration: none; }
.ctc-coord-texte a:hover { text-decoration: underline; }
.ctc-tel { color: var(--ocre); }

.ctc-lien-acces {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--ocre);
  text-decoration: none;
  margin-top: 0.3rem;
}
.ctc-lien-acces:hover { text-decoration: underline; }

.ctc-note {
  background: var(--creme);
  border-left: 3px solid var(--dore);
  border-radius: 0 8px 8px 0;
  padding: 0.8rem 1rem;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: #5a5a5a;
  margin-top: 1rem;
  line-height: 1.55;
}
.ctc-note strong { color: var(--bleu); }

.ctc-photo-wrap { border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(27,59,53,0.12); }
.ctc-photo-cabinet { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── Bloc carte + accès (masqué par défaut) ── */
#ctc-bloc-carte { display: none; }
#ctc-bloc-carte.visible { display: block; }

.ctc-carte-wrapper {
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(27,59,53,0.12);
  margin-bottom: 2rem;
}
.ctc-carte-wrapper iframe { width: 100%; height: 300px; border: none; display: block; }

.ctc-acces-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.ctc-acces-card {
  background: var(--gris-fond); border: 1px solid var(--gris-sep);
  border-radius: 8px; padding: 1.1rem;
}
.ctc-acces-card-header { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.8rem; }
.ctc-acces-icon {
  width: 30px; height: 30px; background: rgba(27,59,53,0.10);
  border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ctc-acces-icon svg { width: 15px; height: 15px; stroke: var(--bleu); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ctc-acces-card h3 { font-family: Georgia, serif; font-size: 0.92rem; font-weight: normal; color: var(--bleu); margin: 0; }
.ctc-acces-item { margin-bottom: 0.7rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--gris-sep); font-family: Arial, sans-serif; font-size: 0.75rem; }
.ctc-acces-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ctc-acces-depuis { display: block; font-weight: bold; color: var(--bleu); margin-bottom: 0.15rem; }
.ctc-acces-detail { display: block; color: #5a5a5a; margin-bottom: 0.3rem; line-height: 1.45; }
.ctc-acces-duree {
  display: inline-block; background: rgba(78,193,188,0.15); color: #2ea39c;
  border-radius: 20px; padding: 0.15rem 0.6rem; font-size: 0.68rem; font-weight: bold;
}

@media (max-width: 720px) {
  .ctc-grid { grid-template-columns: 1fr; }
  .ctc-acces-grid { grid-template-columns: 1fr; }
}