/* ═══════════════════════════════════════════════════════
   §5  CONTACT  ·  contact.css
═══════════════════════════════════════════════════════ */

.contact-section {
  width: 100%;
  padding-bottom: 200px;
  position: relative;
  /* Basic background is transparent */
}

/* ── Viewport edge aligned header ── */
.contact-section__header {
  width: 100%;
  padding: 160px var(--pad) 120px;
}

.contact-section__header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.contact-section__title {
  margin: 0;
}

.contact-section__desc {
  margin: 0 auto;
  max-width: 360px;
  font-family: var(--f-body);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.5;
  text-align: center;
  color: var(--c-grey);
}

/* ── Inner restricted central frame ── */
.contact-section__inner {
  max-width: var(--design-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
}

.contact-section__subtitle {
  margin-top: 0;
  margin-bottom: 60px;
}

.contact-section__form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-label {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-white);
}

.form-input {
  width: 100%;
  background: var(--c-black);
  border: none;
  outline: 1px solid transparent;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--c-grey);
  padding: 18px 20px;
  transition: outline 0.3s ease;
}

.form-input:focus {
  outline: 1px solid var(--c-grey);
}

.form-textarea {
  min-height: 220px;
  resize: none;
  overflow-y: auto;
}

.contact-section__btn {
  align-self: flex-start;
  width: 240px;
  margin-top: 10px;
  /* Button inherits background var(--c-bg) from .btn class, rendering transparent over body */
}

.contact-section__footer {
  margin-top: 40px;
  max-width: 800px;
  color: var(--c-grey);
}

.form-error-link {
  color: inherit;
  text-decoration: underline;
}

/* ── Form feedback messages ── */
.form-feedback {
  display: none;
  margin-top: 20px;
}

.form-feedback--success {
  color: var(--c-yellow);
}

.form-feedback--error {
  color: var(--c-error);
}