.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;  /* fallback for browsers without svh */
  min-height: 100svh;
}

.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;
}

/* Form-field primitives (.con-form, .con-field, .con-input, etc.) live in
   css/contact-form.css — shared with the homepage's contact form so the
   two never drift apart. */

/* 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;
}

/* Building map — same asset and hairline treatment as the office page's
   "Building Map" panel (.off-dir-img), scaled to this narrower column. */
.con-info-map {
  width: 100%;
  display: block;
  border: 1px solid rgba(0,189,255,0.15);
  margin-bottom: 28px;
}

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

.con-info-cta {
  width: fit-content;
}

/* =====================
   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; }
}
