/* Brochure request form. Uses the shared FlightAtom design tokens. */
.brochure-page .brochure-hero { padding-bottom: 96px; }
.brochure-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.brochure-intro .portfolio-lede { max-width: 43ch; }
.brochure-expectation { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); max-width: 43ch; }
.brochure-expectation .portfolio-kicker { margin-bottom: 10px; }
.brochure-card { min-width: 0; padding: 36px; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: var(--bg); box-shadow: var(--shadow-md); }
.brochure-card h2 { font-size: 1.5rem; line-height: 1.3; margin-bottom: 12px; }
.brochure-card > p, .brochure-card form > p { font-size: .9375rem; }
.brochure-field { margin-top: 26px; }
.brochure-field label { display: block; font-weight: 600; color: var(--ink); font-size: .9375rem; margin-bottom: 8px; }
.brochure-field input, .brochure-field select { width: 100%; min-height: 50px; padding: 12px 14px; background: var(--bg); color: var(--ink); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); font: inherit; font-size: 1rem; }
.brochure-field select { padding-right: 32px; }
.brochure-field input:focus-visible, .brochure-field select:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-color: var(--accent); }
.brochure-field-help { margin-top: 8px; font-size: .8125rem; color: var(--ink-muted); }
.brochure-submit { width: 100%; margin-top: 28px; justify-content: center; }
.brochure-submit:disabled { cursor: wait; opacity: .65; }
.brochure-field input:disabled, .brochure-field select:disabled { color: var(--ink-muted); background: var(--bg-subtle); }
.brochure-card form > .brochure-privacy { font-size: .8125rem; color: var(--ink-muted); line-height: 1.6; margin-top: 16px; }
.brochure-privacy a, .brochure-no-script a { text-decoration: underline; text-underline-offset: 3px; }
.brochure-result:not(:empty), .brochure-no-script { margin-top: 22px; padding: 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: var(--bg-subtle); }
.brochure-result:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.brochure-result[data-state="success"] { border-left: 3px solid var(--ok); color: var(--ink); }
.brochure-result[data-state="error"] { border-left: 3px solid var(--bad); color: var(--ink); }
.brochure-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
@media (max-width: 960px) {
  .brochure-layout { gap: 40px; }
  .brochure-card { padding: 28px; }
}
@media (max-width: 720px) {
  .brochure-page .brochure-hero { padding-bottom: 56px; }
  .brochure-layout { grid-template-columns: 1fr; gap: 36px; }
  .brochure-expectation { margin-top: 24px; padding-top: 20px; }
  .brochure-card { padding: 24px; }
}
