/* ===========================
   HERO CONTACT
   =========================== */
.contact-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 4rem 5rem;
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,169,110,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-hero-titre {
  font-family: var(--font-titre);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--blanc);
  line-height: 1.05;
  margin: 1rem 0;
}

.contact-hero-ligne {
  width: 60px;
  height: 0.5px;
  background: var(--or);
  margin: 1.5rem auto;
}

.contact-hero-sous {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gris-texte);
  font-weight: 300;
}

/* ===========================
   SECTION PRINCIPALE
   =========================== */
.contact-section {
  background: var(--noir);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}

/* ===========================
   FORMULAIRE — CENTRÉ
   =========================== */
.contact-form-bloc {
  width: 100%;
  max-width: 800px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.form-groupe {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-groupe--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 400;
}

.form-input {
  background: transparent;
  border: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
  padding: 0.85rem 0;
  color: var(--blanc);
  font-family: var(--font-texte);
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.18);
}

.form-input:focus {
  border-bottom-color: var(--or);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
}

.form-select option {
  background: var(--gris-fonce);
  color: var(--blanc);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.8;
}

.form-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: transparent;
  color: var(--or);
  border: 0.5px solid var(--or);
  font-family: var(--font-texte);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 0.5rem;
}

.form-btn:hover:not(:disabled) {
  background: var(--or);
  color: var(--noir);
}

.form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-erreur {
  font-size: 0.75rem;
  color: #e07070;
  margin-top: 1rem;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}

/* ===========================
   MESSAGE SUCCÈS
   =========================== */
.form-succes {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 1.5rem;
}

.form-succes-icone {
  font-size: 2rem;
  color: var(--or);
}

.form-succes-titre {
  font-family: var(--font-titre);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--blanc);
}

.form-succes-texte {
  font-size: 0.85rem;
  color: var(--gris-texte);
  line-height: 1.9;
  font-weight: 300;
}

/* ===========================
   INFOS — EN LIGNE SOUS LE FORM
   =========================== */
.contact-infos {
  width: 100%;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 0.5px solid rgba(201,169,110,0.15);
}

.contact-info-bloc {
  padding: 2rem 2rem;
  border-right: 0.5px solid rgba(201,169,110,0.15);
  transition: background 0.3s ease;
}

.contact-info-bloc:last-child {
  border-right: none;
}

.contact-info-bloc:hover {
  background: rgba(201,169,110,0.04);
}

.contact-info-label {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.75rem;
}

.contact-info-valeur {
  font-size: 0.82rem;
  color: var(--blanc);
  line-height: 1.8;
  font-weight: 300;
}

.contact-info-lien {
  font-size: 0.82rem;
  color: var(--blanc);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}

.contact-info-lien:hover {
  color: var(--or);
}

.contact-info-offres {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info-offre {
  font-size: 0.78rem;
  color: var(--gris-texte);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}

.contact-info-offre:hover {
  color: var(--or);
}

/* ===========================
   CARTE GOOGLE MAPS
   =========================== */
.contact-carte {
  padding: 0;
  background: var(--noir);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-carte-header {
  text-align: center;
  padding: 5rem 4rem 3rem;
}

.contact-carte-map {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-top: 0.5px solid rgba(201,169,110,0.15);
  border-bottom: 0.5px solid rgba(201,169,110,0.15);
  filter: grayscale(100%) invert(92%) contrast(83%);
  transition: filter 0.6s ease;
}

.contact-carte-map:hover {
  filter: grayscale(20%) invert(0%) contrast(100%);
}

.contact-carte-btn {
  margin: 2rem 0 5rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(201,169,110,0.3);
  padding-bottom: 0.25rem;
  transition: letter-spacing 0.3s ease;
}

.contact-carte-btn:hover {
  letter-spacing: 0.4em;
}
/* ===========================
   PHOTO BANNER
   =========================== */
.contact-photo-banner {
  position: relative;
  height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gris-fonce);
}

.contact-photo-bg {
  position: absolute;
  inset: 0;
}

.contact-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.contact-photo-banner:hover .contact-photo-bg img {
  transform: scale(1);
}

.contact-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.6) 0%,
    rgba(10,10,10,0.3) 50%,
    rgba(10,10,10,0.8) 100%
  );
  z-index: 1;
}

.contact-photo-texte {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.contact-photo-citation {
  font-family: var(--font-titre);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--blanc);
  line-height: 1.4;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .contact-infos {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-bloc:nth-child(2) {
    border-right: none;
  }

  .contact-info-bloc:nth-child(3) {
    border-top: 0.5px solid rgba(201,169,110,0.15);
  }

  .contact-info-bloc:nth-child(4) {
    border-top: 0.5px solid rgba(201,169,110,0.15);
    border-right: none;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 7rem 1.5rem 4rem;
    min-height: 40vh;
  }

  .contact-section {
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-groupe--full {
    grid-column: 1;
  }

  .contact-infos {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info-bloc {
    padding: 1.5rem;
  }

  .contact-info-bloc:nth-child(2) {
    border-right: none;
  }

  .contact-info-bloc:nth-child(odd) {
    border-right: 0.5px solid rgba(201,169,110,0.15);
  }

  .contact-info-bloc:nth-child(n+3) {
    border-top: 0.5px solid rgba(201,169,110,0.15);
  }

  .contact-carte-header {
    padding: 4rem 1.5rem 2rem;
  }

  .contact-carte-map {
    height: 300px;
  }
  .contact-photo-banner {
    height: 35vh;
  }
}