/* ═══════════════════════════════════════
   RENECT — contact.css
   Page contact
═══════════════════════════════════════ */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #F7F3EC;
  color: #1A1612;
}

/* Layout */
.contact-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 460px;
}

/* Colonne gauche */
.contact-left {
  position: relative;
  overflow: hidden;
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse 55% 60% at 15% 25%, rgba(184,130,10,.10), transparent 55%),
    linear-gradient(160deg, #0D1B33 0%, #0A1528 100%);
}

.contact-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 70% 80%, rgba(184,130,10,.06), transparent 65%);
  pointer-events: none;
}

.contact-left > * {
  position: relative;
  z-index: 1;
}

/* Logo */
.contact-logo {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 34px;
  color: #F7F3EC;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
}

.contact-logo span {
  color: var(--gold);
}

/* Badge */
.contact-badge {
  width: fit-content;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(184,130,10,.14);
  border: 1px solid rgba(184,130,10,.32);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* Texte gauche */
.contact-left h1 {
  max-width: 560px;
  margin: 0 0 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.04em;
  color: #F7F3EC;
}

.contact-left p {
  max-width: 500px;
  margin: 0;
  color: rgba(247,243,236,.68);
  font-size: .96rem;
  font-weight: 300;
  line-height: 1.8;
}

/* Infos */
.contact-infos {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(247,243,236,.74);
  font-size: .86rem;
}

.contact-infos span,
.contact-infos div {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Carte formulaire */
.contact-card {
  background:
    radial-gradient(circle at 20% 0%, rgba(184,130,10,.08), transparent 35%),
    #F7F3EC;
  color: #1A1612;
  padding: 56px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(184,130,10,.16);
}

.contact-card h2 {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #1A1612;
}

.contact-card p {
  margin: 0 0 26px;
  color: rgba(26,22,18,.66);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.75;
}

/* Champs */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 14px 15px;
  border-radius: 12px;
  border: 1px solid rgba(184,130,10,.16);
  background: rgba(255,255,255,.82);
  color: #1A1612;
  font-family: inherit;
  font-size: .86rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(26,22,18,.42);
}

.contact-input:focus,
.contact-textarea:focus {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,130,10,.10);
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

/* RGPD */
.contact-rgpd {
  margin: 18px 0 24px;
}

.rgpd-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .8rem;
  line-height: 1.65;
  color: rgba(26,22,18,.72);
  cursor: pointer;
}

.rgpd-check input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}

.rgpd-check span {
  display: block;
  flex: 1;
}

.rgpd-check a {
  display: inline;
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
}

.rgpd-check a:hover {
  text-decoration: underline;
}

/* Bouton */
.contact-btn {
  width: 100%;
  margin-top: 4px;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.contact-btn:hover {
  transform: translateY(-1px);
  opacity: .94;
  box-shadow: 0 14px 32px rgba(184,130,10,.18);
}

/* Message succès */
.contact-success {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(22,163,74,.12);
  border: 1px solid rgba(22,163,74,.22);
  color: #15803D;
  font-weight: 800;
  font-size: .78rem;
}

/* Responsive tablette */
@media (max-width: 900px) {
  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-left {
    padding: 56px 28px 46px;
  }

  .contact-card {
    padding: 46px 28px 56px;
    border-left: none;
    border-top: 1px solid rgba(184,130,10,.16);
  }
}

/* Responsive mobile */
@media (max-width: 600px) {
  .contact-left {
    padding: 44px 20px 38px;
  }

  .contact-left h1 {
    font-size: 2.45rem;
  }

  .contact-left p {
    font-size: .9rem;
  }

  .contact-card {
    padding: 36px 18px 44px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-card h2 {
    font-size: 1.9rem;
  }

  .rgpd-check {
    font-size: .76rem;
  }
}
