/* Enhanced service LP — aligned with the established M&A / startup LP system */
.slp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--paper-line);
  backdrop-filter: blur(14px);
}

@media (max-width: 1600px) {
  .slp-nav .nav__items {
    display: none;
  }

  .slp-nav .nav__menu {
    display: block;
    margin-left: 0;
  }

  .slp-nav > .lp-nav__lang {
    margin-left: auto;
  }
}

.slp {
  overflow: clip;
  background: var(--paper);
  color: var(--on-paper);
  font-family: var(--sans-jp);
  font-size: 16px;
  line-height: 1.85;
  line-break: strict;
  word-break: normal;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

.slp :where(h1, h2, h3) {
  text-wrap: balance;
}

.slp :where(p, li, dt, dd) {
  text-wrap: pretty;
}

.slp-container {
  width: min(1080px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.slp-eyebrow,
.slp-kicker,
.slp-data-label,
.slp-process__meta,
.slp-form__label {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slp-eyebrow,
.slp-kicker {
  color: var(--accent-deep);
}

.slp-title-lines span {
  display: inline;
}

.slp-hero {
  position: relative;
  min-height: 650px;
  padding: 150px 0 76px;
  border-bottom: 1px solid var(--paper-line);
}

.slp-hero::before {
  content: none;
}

.slp-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  pointer-events: none;
}

.slp-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 247, 243, 0.72) 0%, rgba(248, 247, 243, 0.58) 46%, rgba(248, 247, 243, 0.32) 72%, rgba(248, 247, 243, 0.18) 100%),
    linear-gradient(180deg, rgba(248, 247, 243, 0.12) 0%, rgba(248, 247, 243, 0.34) 100%);
}

.slp-hero__visual img {
  width: 100%;
  height: 100%;
  opacity: 0.52;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(0.96);
  transform: scale(1.015);
}

.slp-hero--visual {
  min-height: 720px;
}

.slp-hero--visual .slp-hero__grid {
  position: relative;
  z-index: 1;
}

.slp-hero--visual .slp-hero__copy,
.slp-hero--visual .slp-docket {
  max-width: 880px;
}

.slp-hero--visual .slp-hero__copy {
  padding: 20px 0 24px;
}

.slp-hero--visual .slp-docket {
  border-top-color: rgba(17, 19, 18, 0.2);
}

.slp-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: start;
}

.slp-hero__copy {
  max-width: 880px;
}

.slp-hero h1 {
  max-width: 880px;
  margin: 18px 0 26px;
  font-family: var(--serif-jp);
  font-size: clamp(39px, 5.2vw, 62px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-wrap: balance;
}

.slp-hero__lead {
  max-width: 760px;
}

.slp-hero__lead p {
  margin: 0 0 12px;
  font-family: var(--sans-jp);
  font-size: 17px;
  line-height: 2;
  color: var(--on-paper-mute);
}

.slp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.slp-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  min-width: 160px;
  gap: 24px;
  padding: 13px 28px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--sans-jp);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.slp-button::after {
  content: "→";
  font-family: var(--mono);
}

.slp-button--primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.slp-button:hover {
  transform: translateY(-2px);
  border-color: var(--accent-deep);
  background: var(--accent-deep);
  color: #fff;
}

.slp-docket {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 880px;
  border-top: 1px solid var(--paper-line);
}

.slp-docket::before {
  content: none;
}

.slp-docket__item {
  display: flex;
  min-height: 94px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  padding: 18px 18px 0 0;
}

.slp-docket__item + .slp-docket__item {
  padding-left: 20px;
  border-left: 1px solid var(--paper-line);
}

.slp-docket__item span {
  font-family: var(--sans-jp);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--on-paper-mute);
}

.slp-docket__item strong {
  order: -1;
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent-deep);
}

.slp-section {
  padding: clamp(76px, 9vw, 112px) 0;
}

.slp-section--paper-2 {
  background: var(--paper-2);
}

.slp-section--ink {
  background: var(--paper);
  color: var(--on-paper);
}

.slp-section-head {
  display: block;
  max-width: 760px;
  margin-bottom: 46px;
}

.slp-section-head h2 {
  max-width: 760px;
  margin: 14px 0 16px;
  font-family: var(--serif-jp);
  font-size: clamp(30px, 3.1vw, 40px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0;
}

.slp-section-head p {
  max-width: 760px;
  margin: 0;
  font-family: var(--sans-jp);
  font-size: 16px;
  line-height: 2;
  color: var(--on-paper-mute);
}

.slp-section--ink .slp-kicker {
  color: var(--accent-deep);
}

.slp-section--ink .slp-section-head p {
  color: var(--on-paper-mute);
}

.slp-problems {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.slp-problems:has(.slp-problem:nth-child(4):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.slp-problem {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 18px;
  padding: 30px 26px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.slp-problem h3 {
  margin: 0;
  font-family: var(--serif-jp);
  font-size: 20px;
  line-height: 1.55;
}

.slp-problem p {
  margin: 0;
  font-family: var(--sans-jp);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--on-paper-mute);
}

.slp-problem__impact {
  margin-top: auto !important;
  padding: 16px 0 0;
  border-top: 1px solid var(--paper-line);
  border-left: 0;
}

.slp-problem__impact span {
  display: block;
  margin-bottom: 7px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
}

.slp-scope-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  padding: 38px 0;
  border-top: 1px solid var(--paper-line-strong);
}

.slp-scope-group:last-child {
  border-bottom: 1px solid var(--paper-line-strong);
}

.slp-scope-group__intro h3 {
  margin: 0 0 14px;
  font-family: var(--serif-jp);
  font-size: 24px;
  line-height: 1.5;
}

.slp-scope-group__intro p,
.slp-scope-item p {
  margin: 0;
  font-family: var(--sans-jp);
  font-size: 15px;
  line-height: 1.9;
  color: var(--on-paper-mute);
}

.slp-scope-items {
  border-top: 1px solid var(--paper-line);
}

.slp-scope-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--paper-line);
}

.slp-scope-item h4 {
  margin: 0;
  font-family: var(--serif-jp);
  font-size: 19px;
  line-height: 1.55;
}

.slp-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.slp-deliverables span {
  padding: 5px 8px;
  border: 1px solid var(--paper-line-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.4;
  color: var(--on-paper-mute);
}

.slp-strengths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.slp-strength {
  min-width: 0;
  padding-top: 22px;
  border-top: 2px solid var(--ink);
}

.slp-strength__num {
  display: block;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
}

.slp-strength h3 {
  margin: 0 0 12px;
  font-family: var(--serif-jp);
  font-size: 22px;
  line-height: 1.55;
}

.slp-strength p,
.slp-approach__specific p {
  margin: 0;
  font-family: var(--sans-jp);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--on-paper-mute);
}

.slp-approach__specific {
  max-width: 760px;
  margin: 64px 0 22px;
  padding-top: 46px;
  border-top: 1px solid var(--paper-line);
}

.slp-approach__specific .slp-kicker {
  display: block;
  margin-bottom: 16px;
}

.slp-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  border-top: 1px solid var(--paper-line);
}

.slp-principle {
  padding: 24px 0 26px;
  border-bottom: 1px solid var(--paper-line);
}

.slp-principle h3 {
  margin: 0 0 14px;
  font-family: var(--serif-jp);
  font-size: 20px;
  line-height: 1.55;
}

.slp-principle p {
  margin: 0;
  font-family: var(--sans-jp);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--on-paper-mute);
}

.slp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--paper-line-strong);
  border-radius: var(--radius-lg);
  background: var(--paper-line);
}

.slp-stat {
  min-height: 180px;
  padding: 28px;
  background: var(--paper);
}

.slp-stat strong {
  display: block;
  margin: 20px 0 8px;
  font-family: var(--serif-jp);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--accent-deep);
}

.slp-stat span {
  font-family: var(--sans-jp);
  font-size: 15px;
  line-height: 1.7;
  color: var(--on-paper-mute);
}

.slp-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  counter-reset: slp-step;
}

.slp-process__step {
  counter-increment: slp-step;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-content: start;
  padding: 30px 26px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.slp-process__step::before {
  content: counter(slp-step, decimal-leading-zero);
  grid-row: 1 / 5;
  padding: 0 18px 0 0;
  font-family: var(--serif-en-display);
  font-size: 23px;
  color: var(--accent-deep);
}

.slp-process__step > div {
  grid-column: 2;
  padding: 0;
  border: 0;
}

.slp-process__step > div:not(:first-of-type) {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--paper-line);
}

.slp-process__step h3 {
  margin: 0;
  font-family: var(--serif-jp);
  font-size: 19px;
  line-height: 1.55;
}

.slp-process__meta {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-deep);
}

.slp-process__step p {
  margin: 0;
  font-family: var(--sans-jp);
  font-size: 14px;
  line-height: 1.85;
  color: var(--on-paper-mute);
}

.slp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--paper-line-strong);
  border-radius: var(--radius-lg);
}

.slp-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.slp-table th,
.slp-table td {
  padding: 16px;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  font-family: var(--sans-jp);
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
  vertical-align: top;
}

.slp-table th {
  background: var(--ink);
  color: var(--on-ink);
}

.slp-grid-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.slp-link-card,
.slp-lawyer {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 24px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--on-paper);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.slp-link-card:hover {
  border-color: var(--accent);
  color: var(--on-paper);
  transform: translateY(-2px);
  box-shadow: 0 20px 45px -34px rgba(17, 19, 18, 0.28);
}

.slp-link-card span,
.slp-lawyer__role {
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
}

.slp-link-card:hover span {
  color: var(--accent-deep);
}

.slp-link-card strong,
.slp-lawyer h3 {
  margin: auto 0 0;
  font-family: var(--serif-jp);
  font-size: 20px;
  line-height: 1.55;
}

.slp-link-card p,
.slp-lawyer p {
  margin: 12px 0 0;
  font-family: var(--sans-jp);
  font-size: 14px;
  line-height: 1.8;
  color: var(--on-paper-mute);
}

.slp-link-card:hover p {
  color: var(--on-paper-mute);
}

.slp-lawyer {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.slp-lawyer img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  object-fit: cover;
  filter: saturate(0.86);
}

.slp-lawyer > div {
  padding-top: 14px;
}

.slp-lawyer h3 {
  margin-top: 3px;
}

.slp-faq {
  display: block;
}

.slp-faq > div:first-child h2 {
  margin: 14px 0 0;
  font-family: var(--serif-jp);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.4;
}

.slp-faq > div:first-child {
  margin-bottom: clamp(34px, 5vw, 56px);
}

.slp-faq__list {
  border-top: 1px solid var(--paper-line-strong);
}

.slp-faq details {
  border-bottom: 1px solid var(--paper-line);
}

.slp-faq summary {
  position: relative;
  padding: 22px 48px 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif-jp);
  font-size: 19px;
  line-height: 1.65;
}

.slp-faq summary::-webkit-details-marker {
  display: none;
}

.slp-faq summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  font-family: var(--mono);
  font-size: 24px;
  color: var(--accent-deep);
}

.slp-faq details[open] summary::after {
  content: "−";
}

.slp-faq details p {
  max-width: 800px;
  margin: 0;
  padding: 0 48px 24px 0;
  font-family: var(--sans-jp);
  font-size: 15px;
  line-height: 2;
  color: var(--on-paper-mute);
}

.slp-contact {
  background: var(--ink);
  color: var(--on-ink);
}

.slp-contact .slp-kicker {
  color: var(--accent-soft);
}

.slp-contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.slp-contact h2 {
  margin: 18px 0 22px;
  font-family: var(--serif-jp);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.4;
}

.slp-contact__intro > p,
.slp-contact__inputs li {
  font-family: var(--sans-jp);
  font-size: 15px;
  line-height: 1.9;
  color: var(--on-ink-mute);
}

.slp-contact__inputs {
  padding: 20px 0 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--ink-line-strong);
}

.slp-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.slp-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slp-form__field--full,
.slp-form__status,
.slp-form__actions {
  grid-column: 1 / -1;
}

.slp-form__label {
  color: var(--on-ink-mute);
}

.slp-form__label em {
  margin-left: 6px;
  color: var(--accent-soft);
  font-style: normal;
}

.slp-form input,
.slp-form select,
.slp-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--ink-line-strong);
  border-radius: var(--radius-md);
  background: var(--ink-2);
  color: var(--on-ink);
  padding: 12px 14px;
  font-family: var(--sans-jp);
  font-size: 16px;
}

.slp-form textarea {
  min-height: 160px;
  resize: vertical;
}

.slp-form input:focus,
.slp-form select:focus,
.slp-form textarea:focus {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.slp-form__check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--sans-jp);
  font-size: 14px;
  line-height: 1.7;
  color: var(--on-ink-mute);
}

.slp-form__check input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.slp-form__check a {
  color: var(--on-ink);
}

.slp-form__actions button {
  width: 100%;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--sans-jp);
  font-size: 16px;
  font-weight: 600;
}

.slp-form__actions button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.slp-form__status {
  min-height: 1.6em;
  margin: 0;
  font-family: var(--sans-jp);
  font-size: 14px;
  line-height: 1.7;
}

.slp-form__status--success {
  color: #b9e3cb;
}

.slp-form__status--error {
  color: var(--accent-soft);
}

.slp-honeypot,
.slp-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@keyframes slpReveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.slp-hero__copy,
.slp-docket {
  animation: slpReveal 700ms ease both;
}

.slp-docket {
  animation-delay: 100ms;
}

@media (max-width: 1040px) {
  .slp-hero {
    min-height: 0;
    padding-top: 122px;
  }

  .slp-hero__grid,
  .slp-contact__grid {
    grid-template-columns: 1fr;
  }

  .slp-hero--visual {
    min-height: 0;
  }

  .slp-hero--visual .slp-hero__copy,
  .slp-hero--visual .slp-docket {
    max-width: 880px;
  }

  .slp-docket {
    max-width: 760px;
  }

  .slp-problems {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slp-process {
    grid-template-columns: 1fr;
  }

  .slp-grid-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .slp-problems,
  .slp-problems:has(.slp-problem:nth-child(4):last-child),
  .slp-strengths {
    grid-template-columns: 1fr;
  }

  .slp-docket,
  .slp-principles {
    grid-template-columns: 1fr;
  }

  .slp-docket__item + .slp-docket__item {
    padding-left: 0;
    border-left: 0;
  }

  .slp-docket__item {
    min-height: 0;
    padding: 18px 0;
    border-bottom: 1px solid var(--paper-line);
  }
}

@media (max-width: 760px) {
  .slp-container {
    width: min(100% - 36px, 1080px);
  }

  .slp-hero {
    padding-top: 72px;
  }

  .slp-hero__visual::after {
    background: linear-gradient(180deg, rgba(248, 247, 243, 0.48) 0%, rgba(248, 247, 243, 0.66) 52%, rgba(248, 247, 243, 0.82) 100%);
  }

  .slp-hero__visual img {
    position: absolute;
    top: 150px;
    left: 50%;
    width: 140%;
    height: auto;
    opacity: 0.44;
    object-fit: contain;
    transform: translateX(-50%);
  }

  .slp-hero h1 {
    font-size: clamp(32px, 9.5vw, 44px);
    line-height: 1.24;
  }

  .slp-hero__lead p {
    font-size: 16px;
  }

  .slp-hero__actions,
  .slp-button {
    width: 100%;
  }

  .slp-section-head,
  .slp-scope-group,
  .slp-faq {
    grid-template-columns: 1fr;
  }

  .slp-problem,
  .slp-scope-item {
    grid-template-columns: 1fr;
  }

  .slp-problems {
    grid-template-columns: 1fr;
  }

  .slp-principles,
  .slp-strengths,
  .slp-stats,
  .slp-grid-links,
  .slp-form {
    grid-template-columns: 1fr;
  }

  .slp-process__step {
    grid-template-columns: 54px 1fr;
  }

  .slp-process__step::before {
    padding-right: 8px;
  }

  .slp-process__step > div,
  .slp-process__step > div:last-child {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slp *,
  .slp *::before,
  .slp *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
