/* ============================================================================
   page-wdm-contact.php — page-scoped styles (extracted 2026-05-06)
   ============================================================================ */

/* Contact-page-only utilities (kept under 40 lines) */
  .wdm-contact-split { display: grid; gap: 40px; grid-template-columns: 1fr; }
  @media (min-width: 900px) { .wdm-contact-split { grid-template-columns: 1.2fr 0.8fr; align-items: start; } }
  .wdm-form { display: flex; flex-direction: column; gap: 18px; }
  .wdm-form__row { display: flex; flex-direction: column; gap: 6px; }
  .wdm-form__label { font-size: 13px; font-weight: 500; color: var(--wdm-ink); letter-spacing: 0.3px; }
  .wdm-form__label .req { color: var(--wdm-gold); margin-left: 2px; }
  .wdm-form__input, .wdm-form__select, .wdm-form__textarea {
    font-family: var(--font-body); font-size: 16px; color: var(--wdm-ink);
    background: var(--wdm-white); border: 1px solid var(--wdm-border);
    border-radius: 4px; padding: 12px 14px; line-height: 1.5; min-height: 48px;
    transition: border-color 200ms var(--easing);
  }
  .wdm-form__input:focus, .wdm-form__select:focus, .wdm-form__textarea:focus {
    outline: none; border-color: var(--wdm-gold);
  }
  .wdm-form__textarea { min-height: 120px; resize: vertical; }
  .wdm-form__select[multiple] { min-height: 140px; }
  .wdm-form__consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--wdm-text-muted); line-height: 1.5; }
  .wdm-form__consent input { margin-top: 4px; flex-shrink: 0; }
  .wdm-facts__lines { font-family: var(--font-mono); font-size: 13px; line-height: 1.9; color: var(--wdm-text-muted); margin: 12px 0 16px 0; }
  .wdm-facts__lines div { letter-spacing: 0.3px; }
  .wdm-facts__pull { font-size: 16px; line-height: 1.5; color: var(--wdm-ink); border-left: 4px solid var(--wdm-gold); padding-left: 16px; margin-top: 20px; font-style: italic; }
  .wdm-timeline { display: grid; gap: 16px; grid-template-columns: 1fr; }
  @media (min-width: 700px) { .wdm-timeline { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1000px) { .wdm-timeline { grid-template-columns: repeat(4, 1fr); } }
  .wdm-faq details { background: var(--wdm-white); border: 1px solid var(--wdm-border); border-radius: 4px; padding: 18px 22px; transition: border-color 200ms var(--easing); }
  .wdm-faq details + details { margin-top: 12px; }
  .wdm-faq details[open] { border-color: var(--wdm-gold); }
  .wdm-faq summary { font-size: 17px; font-weight: 700; color: var(--wdm-ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .wdm-faq summary::-webkit-details-marker { display: none; }
  .wdm-faq summary::after { content: "+"; font-family: var(--font-mono); color: var(--wdm-gold); font-size: 22px; font-weight: 400; transition: transform 200ms var(--easing); }
  .wdm-faq details[open] summary::after { content: "\2212"; }
  .wdm-faq details > p { margin: 14px 0 0 0; color: var(--wdm-text-muted); font-size: 16px; line-height: 1.6; }
