/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */

/* back button */
.hl-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-mid);
  border: 1px solid var(--dark-3);
  padding: 0.4em 1em;
  margin-bottom: 2rem;
  transition: color var(--transition), border-color var(--transition);
}
.hl-back-btn:hover { color: var(--white); border-color: var(--red); }

/* hero */
.contact-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem;
  border-bottom: 1px solid var(--dark-3);
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: 'CONTACT';
  position: absolute;
  right: -0.05em; top: 50%;
  transform: translateY(-50%);
  font-family: 'Anton', sans-serif;
  font-size: clamp(80px, 16vw, 200px);
  font-style: italic;
  color: rgba(204,0,0,0.04);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.contact-hero-meta { position: relative; z-index: 2; }
.contact-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.contact-hero-sub {
  font-size: 13px;
  color: var(--light-mid);
  letter-spacing: 0.04em;
  max-width: 46ch;
}

/* ── FORM SECTION ── */
.contact-section {
  padding: clamp(2rem, 4vw, 3.5rem) 0 5rem;
  background: var(--black);
}
.contact-container { max-width: 620px; }

.contact-banner {
  font-size: 14px;
  padding: 0.9em 1.1em;
  margin-bottom: 1.8rem;
  border-left: 3px solid;
}
.contact-banner--success {
  background: rgba(76,175,80,0.08);
  border-color: #4caf50;
  color: #a8e0aa;
}
.contact-banner--error {
  background: rgba(204,0,0,0.08);
  border-color: var(--red);
  color: #ffb3b3;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-field-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.contact-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-mid);
}
.contact-word-count {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.contact-word-count--over { color: var(--red-light); }

.contact-notice {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--mid);
  border-left: 3px solid var(--dark-3);
  padding: 0.6em 0.9em;
  background: rgba(255,255,255,0.02);
}

.contact-field select,
.contact-field input,
.contact-field textarea {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--white);
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  padding: 0.75em 0.9em;
  width: 100%;
  transition: border-color var(--transition);
}
.contact-field select:focus,
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.contact-field select { appearance: none; cursor: pointer; }

.contact-submit {
  align-self: flex-start;
  margin-top: 0.4rem;
}

@media (max-width: 600px) {
  .contact-submit { align-self: stretch; text-align: center; }
}
