/* ---- reCAPTCHA placeholder — visual stand-in for Google's "I'm not a
   robot" widget, used on the Contact page form (final step) and the
   Enquire Now modal. No API integration yet: the checkbox is a real
   required form control, so a form still can't be submitted without it,
   but the badge/icon is static rather than a live challenge. Swap the
   markup for the real reCAPTCHA embed once a site key exists. */
.recaptcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  max-width: 302px;
  padding: var(--space-4) var(--space-5);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.recaptcha__field {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-ink);
  font-size: var(--font-size-4);
  cursor: pointer;
}

.recaptcha__checkbox {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--color-ink);
  cursor: pointer;
}

.recaptcha__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  color: var(--color-text-muted);
}

.recaptcha__badge-icon {
  width: 26px;
  height: 26px;
  color: var(--color-sage);
}

.recaptcha__badge-text {
  font-size: 9px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  white-space: nowrap;
}

.recaptcha__note {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
}
