/* /contact — message-first "get in touch" page. Rides the shared card system (build.css dark
   canvas + flow.css card/inputs); only the signpost list, the "or" divider and the email line
   are new here. Mirror of docs/adr/0011. */

.pr-contact-card { text-align: left; }

/* "Fastest path" signposts — one row per funnel reason. */
.pr-contact-signs {
  display: grid;
  gap: .5rem;
  margin: 1rem 0 .25rem;
}
.pr-contact-sign {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem .85rem;
  border: 1px solid var(--pr-line);
  border-radius: 12px;
  background: var(--pr-card-soft);
  text-decoration: none;
  color: var(--pr-ink);
  transition: border-color .15s ease, background .15s ease, transform .05s ease;
}
.pr-contact-sign:hover {
  border-color: var(--pr-forest);
  background: #fff;
}
.pr-contact-sign:active { transform: translateY(1px); }
.pr-cs-tx { display: flex; flex-direction: column; line-height: 1.25; flex: 1; }
.pr-cs-tx b { font-weight: 600; font-size: .98rem; }
.pr-cs-tx span { color: var(--pr-slate); font-size: .82rem; }
.pr-cs-chev { color: var(--pr-forest); font-size: 1.15rem; font-weight: 600; }

/* "or send us a message" divider. */
.pr-contact-or {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.1rem 0 .35rem;
  color: var(--pr-slate);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pr-contact-or::before,
.pr-contact-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--pr-line);
}

.pr-contact-email {
  margin: .85rem 0 0;
  text-align: center;
  color: var(--pr-slate);
  font-size: .88rem;
}
.pr-contact-email a { color: var(--pr-forest); font-weight: 600; }

/* Success state checkmark (text glyph, not the inline SVG the flow engine uses). */
.pr-contact-done .flow-big-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--pr-forest);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}
