.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: none; }
.con-d1 { transition-delay: 0.12s; }

/* =====================
   FORM SECTION
   ===================== */
.con-form-section {
  padding: 160px 0 120px;
  background: #0d1012;
  min-height: 100vh;
}

.con-form__wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.con-form-heading {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  color: #F4F4F4;
  line-height: 1;
  margin-bottom: 48px;
}

.con-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.con-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.con-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.con-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F4F4F4;
}

.con-required {
  color: rgba(0,189,255,0.65);
  margin-left: 3px;
}

.con-input,
.con-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,189,255,0.2);
  color: #F4F4F4;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}

.con-input:focus,
.con-textarea:focus {
  border-bottom-color: rgba(0,189,255,0.8);
}

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

/* Submit = action button: white teardrop, no arrow (arrows mean "leaves
   the page" sitewide). */
.con-submit {
  /* Fill + hover come from the global .btn.btn-white; this only owns layout. */
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.con-success {
  display: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00BDFF;
  padding: 16px 0;
  border-top: 1px solid rgba(0,189,255,0.2);
  margin-top: 16px;
}
.con-success.is-shown { display: block; }

.con-error {
  display: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF8C7A;
  padding: 16px 0;
  border-top: 1px solid rgba(255,140,122,0.25);
  margin-top: 16px;
}
.con-error.is-shown { display: block; }

.con-captcha { margin-top: 8px; }

/* Honeypot — moved off-canvas rather than display:none so bots that skip
   invisible fields still see it as a "real" input. */
.con-hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Info column */
.con-info-heading {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  text-transform: uppercase;
  color: #F4F4F4;
  line-height: 1;
  margin-bottom: 28px;
}

.con-info-address {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #F4F4F4;
  margin-bottom: 32px;
}

.con-info-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.con-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F4F4F4;
  display: block;
  margin-bottom: 4px;
}

.con-info-val {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 15px;
  color: #F4F4F4;
}

.con-info-val a {
  color: rgba(0,189,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.con-info-val a:hover { color: #00BDFF; }

.con-info-divider {
  width: 32px;
  height: 1px;
  background: rgba(0,189,255,0.25);
  margin: 36px 0;
}

.con-info-note {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #B0B2B5;
  font-style: italic;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
  .con-form-section { padding: 140px 0 80px; }
  .con-form__wrap {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 32px;
  }
}

@media (max-width: 600px) {
  .con-form-section { padding: 120px 0 64px; }
  .con-form__wrap { padding: 0 24px; }
  .con-field-row { grid-template-columns: 1fr; }
}
