/* Landing pages (services + roles) — on top of land.css */

.nav--simple {
  justify-content: space-between;
}

.nav--simple .nav__links,
.nav--simple .nav__menu {
  display: none;
}

/* Hero: title + one line + one action. No kicker stack. */
.lp-top {
  padding-top: clamp(5.75rem, 12vh, 7.25rem);
  padding-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.lp-top__inner {
  display: grid;
  gap: 1.35rem;
  max-width: 34rem;
}

.lp-top h1 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.lp-top h1 em {
  font-style: italic;
  color: var(--rust);
}

.lp-top__sub {
  margin: 0;
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  line-height: 1.45;
}

.lp-top__act {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.85rem 1.35rem;
}

.lp-top__mail {
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.lp-top__mail:hover {
  color: var(--ink);
  border-bottom-color: color-mix(in srgb, var(--ink) 25%, transparent);
}

.lp-top__note {
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* Two-up content without card chrome */
.lp-split {
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
}

@media (min-width: 880px) {
  .lp-split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.lp-block h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.lp-block p {
  margin: 0 0 0.9rem;
  max-width: 48ch;
  color: var(--ink-soft);
  line-height: 1.55;
}

.lp-block p:last-child {
  margin-bottom: 0;
}

.lp-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.lp-list li {
  margin: 0;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.4;
}

.lp-list--soft li {
  color: var(--ink-soft);
}

/* Proof strip: one fact, not a quote card */
.lp-proof {
  max-width: 40rem;
  padding-top: 0.25rem;
}

.lp-proof strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.lp-proof p {
  margin: 0;
  max-width: 52ch;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Related links as plain rows */
.lp-links {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .lp-links {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-links h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
}

.lp-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.lp-links li {
  border-bottom: 1px solid var(--line);
}

.lp-links a {
  display: block;
  padding: 0.8rem 0;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.lp-links a:hover {
  color: var(--rust-deep);
}

/* Hub index rows */
.svc__row h3 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--rust) 35%, transparent);
}

.svc__row h3 a:hover {
  color: var(--rust-deep);
}

/* Answer block on landings */
.lp-answer {
  max-width: 42rem;
}

.lp-answer h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.lp-answer p {
  margin: 0;
  max-width: 58ch;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Tighter FAQ head on landings */
.lp .section-head {
  margin-bottom: 1.25rem;
}

.lp .section-head h2 {
  max-width: 18ch;
}
