/* ============================================================
   SOLOMON WATSON — positioning page layer
   Rides on styles.css tokens. No scroll engine, no canvas.
   ============================================================ */
body.lp { overflow-x: hidden; }
body.lp main { padding-top: 84px; }

/* ---------- hero ---------- */
.lp-hero {
  padding: clamp(64px, 9vw, 128px) clamp(24px, 7vw, 120px) clamp(48px, 6vw, 88px);
  border-bottom: 1px solid var(--hair);
  background: var(--paper-2);
}
.lp-h1 {
  font-size: clamp(2.3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  max-width: 16ch;
  margin-bottom: 26px;
}
.lp-lede {
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.62;
  color: var(--ink-60);
}
.lp-hero-cta {
  margin-top: 36px;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 30px;
}

/* ---------- content blocks ---------- */
.lp-block {
  padding: clamp(52px, 6vw, 88px) clamp(24px, 7vw, 120px);
  border-bottom: 1px solid var(--hair);
}
.lp-block h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 22ch;
  margin-bottom: 30px;
}
.lp-prose { max-width: 72ch; display: flex; flex-direction: column; gap: 20px; }
.lp-prose p { font-size: clamp(1rem, 1.4vw, 1.1rem); line-height: 1.72; color: var(--ink-60); }
.lp-prose b { color: var(--ink); font-weight: 700; }

/* ---------- faq ---------- */
.lp-faqs { max-width: 72ch; border-top: 1px solid var(--hair); }
.lp-faq { border-bottom: 1px solid var(--hair); }
.lp-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 34px 20px 0;
  position: relative;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--red);
  transition: transform 0.25s;
}
.lp-faq[open] summary::after { content: "\2013"; }
.lp-faq summary:hover { color: var(--red); }
.lp-faq > p { padding: 0 34px 22px 0; font-size: 1rem; line-height: 1.7; color: var(--ink-60); }

/* ---------- related pages ---------- */
.lp-rels { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(14px, 2vw, 22px); }
.lp-rel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--hair);
  border-radius: 14px;
  background: var(--paper);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
}
.lp-rel:hover { transform: translateY(-4px); border-color: transparent; box-shadow: 0 22px 50px -28px rgba(22, 24, 29, 0.4); }
.lp-rel-t { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }

/* ---------- quote ---------- */
.lp-quote { padding: clamp(56px, 7vw, 104px) clamp(24px, 7vw, 120px); background: var(--ink); color: #fff; }
.lp-quote .sec-label, .lp-quote .lp-quote-note { color: rgba(255, 255, 255, 0.62); }
.lp-quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.lp-quote-title {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 18px;
}
.lp-quote-note { max-width: 40ch; font-size: 1rem; line-height: 1.6; margin-bottom: 26px; }
.lp-quote .quote-form { background: var(--paper); color: var(--ink); }

@media (max-width: 900px) {
  .lp-quote-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body.lp main { padding-top: 72px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* validation colours readable on the dark quote panel */
.lp-quote .qf-field.invalid input,
.lp-quote .qf-field.invalid select,
.lp-quote .qf-field.invalid textarea { border-color: var(--red); background: #fff6f7; }
