/* =========================
   CONTACT PAGE
========================= */
body {
  font-family: "Montserrat", sans-serif;

}

.contact-page {
  min-height: 100svh;
  background: #000;
  color: #fff;
  padding: clamp(8rem, 12vw, 12rem) 6vw;
  display: flex;
  align-items: center;
}

.contact-inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.contact-kicker {
  margin-bottom: 3rem;
  font-size: 0.75rem;
  letter-spacing: 1.1em;
  text-indent: 1.1em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}

.contact-title {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.06em;
  color: #fff;
}

.contact-form {
  margin-top: clamp(4rem, 7vw, 6rem);
  max-width: 640px;
  margin-left: auto;
}

.form-row {
  margin-bottom: 2rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 180px;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(255, 255, 255, 0.85);
}

.contact-submit {
  margin-top: 2rem;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}

.contact-submit:hover {
  background: #fff;
  color: #000;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* MOBILE */

@media (max-width: 767px) {
  .contact-page {
    min-height: auto;
    padding: 8rem 1.4rem 6rem;
    align-items: flex-start;
  }

  .contact-kicker {
    margin-bottom: 2.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.8em;
    text-indent: 0.8em;
  }

  .contact-title {
    font-size: clamp(2.3rem, 12vw, 4rem);
    line-height: 1;
  }

  .contact-form {
    margin-top: 3.5rem;
    margin-left: 0;
  }
}

/* =========================
   FORM STATUS
========================= */

.form-status {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  border: 1px solid rgba(120, 255, 160, 0.25);
  background: rgba(120, 255, 160, 0.06);
  color: rgba(180, 255, 200, 0.95);
}

.form-status.error {
  border: 1px solid rgba(255, 120, 120, 0.2);
  background: rgba(255, 120, 120, 0.05);
  color: rgba(255, 180, 180, 0.92);
}

/* =========================
   AUTOFILL FIX
========================= */

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill,
.contact-form textarea:-webkit-autofill:hover,
.contact-form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  box-shadow: 0 0 0 1000px #000 inset;
  -webkit-box-shadow: 0 0 0 1000px #000 inset;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  transition: background-color 9999s ease-in-out 0s;
}

.contact-form input,
.contact-form textarea {
  background-color: transparent;
}