/* ============================================================
   PAGE — CONTACT (css/page-contact.css)
   The order desk: form + reassurance rail, contact sheet,
   where-to-find-us cards.
   Loads after css/site.css. Page-only styles — nothing shared.
   ============================================================ */

/* ---------- what happens next — routing slip steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
  margin-top: 2.25rem;
  margin-bottom: 2.75rem;
}
.steps li {
  counter-increment: step;
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 1.3rem 1.2rem 1.1rem;
  position: relative;
}
.steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--display); font-weight: 900;
  font-size: 2rem; line-height: 1;
  color: var(--safelight);
  margin-bottom: 0.6rem;
}
.steps li p {
  font-family: var(--body);
  font-size: 0.95rem; line-height: 1.6;
  color: var(--bone-dim);
  margin: 0;
}
.steps li p strong { color: var(--bone); font-weight: 600; }

/* ---------- form + aside layout ---------- */
.desk {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 20rem);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  max-width: var(--measure);
  margin-left: auto; margin-right: auto;
}
.desk .form-frame { max-width: none; }

/* ---------- contact sheet — mono details card ---------- */
.contact-sheet {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 1.4rem 1.3rem 1.2rem;
}
.contact-sheet-h {
  font-family: var(--mono); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--kodak);
  margin: 0 0 1rem;
}
.contact-sheet dl { margin: 0; }
.contact-sheet dt {
  font-family: var(--mono); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone-dim);
  margin: 0 0 0.1rem;
}
.contact-sheet dd {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  overflow-wrap: break-word;
}
.contact-sheet dd:last-child { margin-bottom: 0; }
.contact-sheet a {
  display: inline-block;
  padding: 0.35rem 0; /* tap target */
}

/* pro-tip note taped under the contact sheet */
.pro-tip {
  position: relative;
  background: var(--ink-2);
  border: 1px dashed rgba(232, 160, 76, 0.4);
  padding: 1.6rem 1.3rem 1.1rem;
  margin-top: 1.9rem;
  font-size: 0.9rem;
  color: var(--bone-dim);
}
.pro-tip::before { /* splicing tape */
  content: "";
  position: absolute; top: -0.7rem; left: 50%;
  width: 5.5rem; height: 1.4rem;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(232, 160, 76, 0.28);
  border-left: 1px dashed rgba(20, 16, 8, 0.5);
  border-right: 1px dashed rgba(20, 16, 8, 0.5);
}
.pro-tip strong { color: var(--kodak); }

/* soft "just starting to think about it" note under the desk */
.soft-note {
  max-width: 46rem;
  margin-top: 2.25rem;
  font-family: var(--body);
  font-size: 0.98rem; line-height: 1.65;
  color: var(--bone-dim);
}

/* ---------- where to find us ----------
   Two thin cards floating in the left half of the section read as an
   afterthought. They now run the full measure and carry what each base
   actually covers. */
.find-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.find-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--amber);
  padding: 1.7rem 1.6rem 1.5rem;
}
.find-card:last-child { border-top-color: var(--safelight); }
.find-kicker {
  font-family: var(--mono); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--bone-dim);
  margin: 0 0 0.5rem;
}
.find-card h3 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 2.6rem); line-height: 1;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--kodak);
  margin: 0 0 0.35rem;
}
.find-sub {
  font-family: var(--mono); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--safelight);
  margin: 0 0 1rem;
}
.find-copy {
  font-family: var(--body); font-size: 0.95rem; line-height: 1.6;
  color: var(--bone-dim);
  margin: 0 0 1.2rem;
}
.find-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: 0.35rem 1.2rem;
  border-top: 1px dashed rgba(232, 160, 76, 0.3);
  padding-top: 1.1rem;
}
.find-list li {
  position: relative;
  padding-left: 1.1rem;
  font-family: var(--mono); font-size: 0.82rem;
  color: var(--bone);
}
.find-list li::before {
  content: "▸";
  position: absolute; left: 0; top: 0;
  color: var(--amber);
}
.find-note { margin-top: 1.75rem; max-width: 52em; color: var(--bone-dim); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .desk { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; max-width: 30rem; margin-left: 0; }
}
@media (max-width: 560px) {
  .find-grid { grid-template-columns: 1fr; }
}
