/* ════════════════════════════════════════════════════════════════
   Bench Tester — Contact page
   ════════════════════════════════════════════════════════════════ */

.contact-page { background: #fff; }

.bt-contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 11vw, 140px) 0 clamp(50px, 6vw, 72px);
  color: #fff;
  background:
    radial-gradient(ellipse 60% 55% at 22% 55%, rgba(200,0,28,.12) 0%, transparent 65%),
    linear-gradient(145deg, #18171F 0%, #211E2E 30%, #251F32 60%, #1C1824 100%);
}
.bt-contact-hero .eyebrow {
  color: rgba(200,0,28,.8);
  font-family: var(--bt-mono, "JetBrains Mono", monospace);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.bt-contact-hero h1 {
  font-family: var(--bt-cond, "Barlow Condensed", "Rajdhani", sans-serif);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.92;
  letter-spacing: -1px;
  margin: 0 0 24px;
  max-width: 780px;
  color: #fff;
}
.bt-contact-hero__lead {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  margin: 0;
}

.bt-contact { background: var(--bt-snow, #F7F7F8); padding: 80px 0 100px; }
.bt-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 860px) {
  .bt-contact__grid { grid-template-columns: 1fr; }
}

.bt-contact__form-wrap {
  background: #fff;
  border: 1px solid var(--bt-line, #ececec);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 20px 60px rgba(16, 17, 24, 0.08);
}
.bt-contact__form-wrap h2 {
  font-family: var(--bt-cond, "Barlow Condensed", "Rajdhani", sans-serif);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 36px);
  color: #161616;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}

.bt-contact__alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.55;
}
.bt-contact__alert--success {
  background: rgba(46,125,50,.08);
  border: 1px solid rgba(46,125,50,.3);
  color: #1b5e20;
}
.bt-contact__alert--error {
  background: rgba(198,31,38,.06);
  border: 1px solid rgba(198,31,38,.28);
  color: #a1181e;
}
.bt-contact__alert p { margin: 0; color: inherit; }
.bt-contact__alert p + p { margin-top: 4px; }

.bt-contact__form { display: flex; flex-direction: column; gap: 18px; }
.bt-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 640px) {
  .bt-contact__row { grid-template-columns: 1fr; }
}

.bt-contact__field { display: flex; flex-direction: column; gap: 6px; }
.bt-contact__field > span {
  font-family: var(--bt-cond, "Barlow Condensed", "Rajdhani", sans-serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #2a2a2f;
}
.bt-contact__field input,
.bt-contact__field textarea,
.bt-contact__field select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  color: #161616;
  background: #fff;
  border: 1px solid #dcdce0;
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.bt-contact__field input:focus,
.bt-contact__field textarea:focus,
.bt-contact__field select:focus {
  outline: none;
  border-color: #C8001C;
  box-shadow: 0 0 0 3px rgba(200,0,28,.12);
}
.bt-contact__field textarea { resize: vertical; min-height: 140px; }
.bt-contact__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23161616' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
}
.bt-contact__select option { color: #161616; background: #fff; }

.bt-contact__debug {
  margin-bottom: 24px;
  padding: 14px 18px;
  background: #0f1115;
  color: #f3f4f6;
  border-radius: 10px;
  border: 1px solid #2a2d33;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12.5px;
  line-height: 1.55;
}
.bt-contact__debug summary {
  cursor: pointer;
  color: #ffd166;
  font-family: "Barlow Condensed", "Rajdhani", sans-serif;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  outline: none;
  user-select: none;
}
.bt-contact__debug ul {
  margin: 12px 0 10px;
  padding: 0;
  list-style: none;
}
.bt-contact__debug li { padding: 3px 0; color: #d1d5db; }
.bt-contact__debug code {
  color: #93c5fd;
  background: rgba(255,255,255,0.04);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 12px;
}
.bt-contact__debug p { color: #d1d5db; font-size: 12px; margin: 8px 0; }
.bt-contact__debug small { color: #9ca3af; font-size: 11.5px; }
.bt-contact__debug .btn {
  display: inline-block;
  margin-top: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .2s ease;
}
.bt-contact__debug .btn:hover {
  background: #C8001C;
  border-color: #C8001C;
}

.bt-contact__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #44444a;
  line-height: 1.5;
  cursor: pointer;
}
.bt-contact__consent input {
  margin: 3px 0 0;
  width: 16px; height: 16px;
  accent-color: #C8001C;
  flex-shrink: 0;
}
.bt-contact__notice {
  font-size: 12px;
  color: #74747a;
  line-height: 1.6;
  margin: 0;
}
.bt-contact__actions { margin-top: 6px; }
.bt-contact__actions .btn {
  font-family: var(--bt-cond, "Barlow Condensed", "Rajdhani", sans-serif);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 28px;
  font-size: 14px;
}

/* Honeypot — visually hidden, never shown */
.bt-contact__hp {
  position: absolute !important;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.bt-contact__info {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bt-contact__info h2 {
  font-family: var(--bt-cond, "Barlow Condensed", "Rajdhani", sans-serif);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  color: #161616;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}

.bt-contact__card {
  background: #fff;
  border: 1px solid var(--bt-line, #ececec);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .2s ease, transform .2s ease;
}
.bt-contact__card:hover {
  border-color: rgba(200,0,28,.3);
  transform: translateY(-1px);
}
.bt-contact__card-label {
  font-family: var(--bt-mono, "JetBrains Mono", monospace);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b8b92;
  margin: 0 0 2px;
}
.bt-contact__card strong {
  color: #161616;
  font-size: 16px;
  font-weight: 700;
}
.bt-contact__card a {
  color: #161616;
}
.bt-contact__card a:hover strong { color: #C8001C; }
.bt-contact__card span {
  color: #5f5f5f;
  font-size: 14px;
  line-height: 1.45;
}

.bt-contact__content {
  margin-top: 48px;
  max-width: 820px;
}

@media (max-width: 860px) {
  .bt-contact__info { position: static; }
}
