/* ============================================================
   contact.css — Page de contact
   ============================================================ */

/* ── HERO AVEC IMAGE ──────────────────────────────────────── */
.contact-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.contact-hero__image {
  position: absolute;
  inset: 0;
}
.contact-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,20,34,.2) 0%,
    rgba(5,20,34,.75) 100%
  );
}
.contact-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 0 56px;
  width: 100%;
  text-align: center;
}
.contact-hero__badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(165,133,66,0.6);
  color: rgba(165,133,66,.9);
  font-size: 10px;
  letter-spacing: .18em;
  margin-bottom: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.contact-hero__title {
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.02em;
  font-family: 'Georgia', serif;
}
.contact-hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.page-section--contact {
  background: #ebebeb;
  padding: 0 !important;
}
.contact-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2px;
  background: #ebebeb;
}

/* ── COLONNE INFOS ───────────────────────────────────────── */
.contact-infos {
  background: var(--black);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-infos__block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-infos__icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(165,133,66,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-infos__label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-infos__val {
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Georgia', serif;
  line-height: 1.5;
}
.contact-infos__val:hover { color: var(--gold); }

.contact-infos__quote {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.contact-infos__quote blockquote {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-family: 'Georgia', serif;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 12px;
}
.contact-infos__quote cite {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .06em;
  font-style: normal;
}

/* ── FORMULAIRE ──────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  padding: 56px 56px 64px;
}

.contact-form-header {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.contact-form-header__label {
  display: block;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-form-header__title {
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin: 0;
  font-family: 'Georgia', serif;
  letter-spacing: -.01em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-bottom: 32px;
}
.contact-form .form-group {
  margin-bottom: 32px;
}
.contact-form__row .form-group { margin-bottom: 0; }

.contact-form .form-group label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  display: block;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: var(--black);
  background: transparent;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-bottom-color: var(--gold);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #ccc;
  font-style: italic;
  font-size: 14px;
}
.contact-form .form-group textarea {
  resize: none;
  min-height: 140px;
}

.contact-form__submit {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.contact-form__submit .btn--gold {
  padding: 18px 56px;
  font-size: 12px;
  letter-spacing: .12em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-form__note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--text);
  letter-spacing: .04em;
}

/* ── SUCCÈS ───────────────────────────────────────────────── */
.contact-success {
  text-align: center;
  padding: 80px 40px;
}
.contact-success__icon {
  font-size: 56px;
  color: #16a34a;
  margin-bottom: 20px;
}
.contact-success h3 {
  font-size: 26px;
  font-weight: 400;
  font-family: 'Georgia', serif;
  color: var(--black);
  margin-bottom: 12px;
}
.contact-success p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-content { grid-template-columns: 1fr; }
  .contact-infos { padding: 40px 32px; }
  .contact-infos__quote { display: none; }
  .contact-form-wrap { padding: 40px 32px; }
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
  .contact-hero { height: 320px; }
  .contact-hero__title { font-size: 32px; }
}
@media (max-width: 480px) {
  .contact-form-wrap { padding: 32px 20px; }
  .contact-hero__title { font-size: 26px; }
}
