.contact-page {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 2rem 8rem;
}

/* Header */
.contact-header {
  margin-bottom: 4rem;
}

.contact-header h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.contact-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}

/* Layout 2 colonnes */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Formulaire */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-field label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}

.contact-required {
  color: rgba(0, 0, 0, 0.4);
}

.contact-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.35);
  font-size: 0.8rem;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  padding: 0.6rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-bottom-color: rgba(0, 0, 0, 0.7);
}

/* Bouton */
.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: 0.5rem;
}

.contact-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.contact-submit:hover {
  background: rgba(0, 0, 0, 0.7);
}

.contact-submit:hover svg {
  transform: translateX(3px);
}

/* Status message */
.contact-form-status {
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 1.4em;
  color: rgba(0, 0, 0, 0.6);
}

.contact-form-status.success { color: #2a7a4b; }
.contact-form-status.error   { color: #b94040; }

/* Aside */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.5rem;
}

.contact-aside-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0.4rem;
}

.contact-email-link {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85) !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.contact-email-link:hover {
  border-bottom-color: rgba(0, 0, 0, 0.7);
}

.contact-aside-note {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 700px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
