/* =========================================================
   Contact page — "Call me" callback form + direct details
   ========================================================= */

.callback {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  /* Wider than the 820px reading column the page text uses. */
  width: min(1100px, calc(100vw - 48px));
  margin-left: 50%;
  transform: translateX(-50%);
  margin-block: 8px 64px;
}

.callback-main {
  background: #000;
  color: #fff;
  padding: clamp(28px, 5vw, 56px);
}
.callback-main .eyebrow { color: rgba(255, 255, 255, .7); }
.callback-main h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  margin: 0 0 16px;
  color: #fff;
}
.callback-intro {
  color: rgba(255, 255, 255, .78);
  margin: 0 0 32px;
  max-width: 46ch;
}

.callback-form label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.callback-row { display: flex; gap: 12px; }
.callback-row input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 16px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #fff;
  border-radius: 2px;
}
.callback-row input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
/* Same fixed height for field and button, so they line up whatever the
   parent theme's form and button defaults do. */
.callback-row > input,
.callback-row > .btn { height: 54px; box-sizing: border-box; margin: 0; }
.callback-row > input { padding-block: 0; }
.callback-row .btn {
  flex: 0 0 auto;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.callback-row .btn[disabled] { opacity: .6; cursor: progress; transform: none; }

.callback-status {
  min-height: 1.5em;
  margin: 14px 0 0;
  font-size: .95rem;
}
.callback-status.is-ok    { color: var(--primary); }
.callback-status.is-error { color: #f2b8b5; }
.callback-note {
  margin: 8px 0 0;
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
}

/* Honeypot — off-screen rather than display:none, which some bots skip. */
.callback-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.callback-details {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}
.callback-details h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0 0 20px;
}
.callback-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.entry-content .callback-details li { margin-bottom: 18px; }
.callback-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.entry-content .callback a:not(.btn) { color: var(--ink); }
.entry-content .callback .btn { text-decoration: none; align-self: flex-start; margin-top: auto; }

@media (max-width: 800px) {
  .callback {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    transform: none;
  }
}
@media (max-width: 480px) {
  .callback-row { flex-direction: column; }
}
