/* ============================================================
   About + Support — page-local layout. Uses the design tokens;
   prose styling comes from journal.css (.ma-prose), also enqueued
   on these pages.
   ============================================================ */

/* Shared page hero */
.page-hero { max-width: 760px; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(34px, 5vw, 64px); line-height: 1.04; letter-spacing: -0.03em;
  margin-top: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero .lede { margin-top: 24px; }

/* ---- About ------------------------------------------------ */
.about-grid {
  display: grid; grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(28px, 5vw, 64px); align-items: start;
  margin-top: clamp(36px, 5vw, 60px);
}
.about-aside {
  border: 1px solid var(--rule); border-radius: var(--r);
  padding: clamp(22px, 3vw, 30px); background: var(--paper-2);
  position: sticky; top: 90px;
}
.about-aside .brand-mark { width: 46px; height: 48px; margin-bottom: 18px; }
.about-portrait { border-radius: var(--r); overflow: hidden; border: 1px solid var(--rule); margin-bottom: 20px; }
.about-details { margin: 0; border-top: 1px solid var(--rule); }
.about-details .d {
  display: grid; grid-template-columns: 42% 1fr; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--rule);
}
.about-details dt { margin: 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.about-details dd { margin: 0; font-size: 14.5px; color: var(--ink); }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-aside { position: static; }
}

/* ---- Support ---------------------------------------------- */
.support-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: clamp(32px, 5vw, 48px);
}
.support-card {
  border: 1px solid var(--rule); border-radius: var(--r);
  padding: clamp(24px, 3vw, 34px); background: var(--paper);
}
.support-card h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; }
.support-card h3::before {
  content: ''; display: inline-block; width: 9px; height: 9px; border-radius: 100px;
  background: var(--accent); margin-right: 10px; vertical-align: middle;
}
.support-card .ma-prose { margin-top: 14px; font-size: 15.5px; }

.support-contact {
  border-top: 1px solid var(--rule);
  margin-top: clamp(40px, 6vw, 72px); padding-top: clamp(36px, 6vw, 64px);
}
.support-contact h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3.4vw, 40px); margin-top: 14px; }
.support-contact .cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }

.support-legal { margin-top: clamp(32px, 5vw, 56px); }
.support-legal .legal-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; }
.support-legal .legal-links a { color: var(--accent); }
.support-legal .legal-links a:hover { text-decoration: underline; }
.support-legal .ma-prose { margin-top: 14px; font-size: 14px; color: var(--ink-mute); }

@media (max-width: 820px) { .support-grid { grid-template-columns: 1fr; } }

/* ---- Contact Form 7 — adopt the theme look ----------------- */
.wpcf7 { max-width: 620px; }
.wpcf7-form p { margin: 0 0 18px; }
.wpcf7-form label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%; margin-top: 8px; box-sizing: border-box;
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--rule); border-radius: 12px;
  padding: 12px 14px; line-height: 1.45;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.wpcf7-form textarea { min-height: 140px; resize: vertical; }
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 22%, transparent);
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: var(--ink-faint); }

/* Submit button — match the solid .btn */
.wpcf7-form input[type="submit"],
.wpcf7-form button[type="submit"] {
  font-family: var(--sans); font-weight: 600; font-size: 15px; cursor: pointer;
  background: var(--ink); color: var(--paper); border: 1px solid var(--ink);
  border-radius: 100px; padding: 13px 26px; margin-top: 4px;
  transition: transform .15s ease, filter .2s ease;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form button[type="submit"]:hover { transform: translateY(-1px); filter: brightness(1.08); }

/* Spinner + validation + response messaging */
.wpcf7-spinner { margin: 0 0 0 12px; }
.wpcf7-form .wpcf7-not-valid { border-color: #c4503e; }
.wpcf7-form .wpcf7-not-valid-tip { color: #c4503e; font-size: 13px; margin-top: 6px; }
.wpcf7-form .wpcf7-response-output {
  margin: 8px 0 0; padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--rule); font-size: 14px; color: var(--ink-soft);
}
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output { border-color: #c4503e; }
.wpcf7-form.sent .wpcf7-response-output { border-color: color-mix(in oklch, var(--accent) 50%, var(--rule)); }
