.service-page .site-header {
  position: sticky;
  top: 0;
}

.service-page .wordmark {
  grid-column: auto;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 660px;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 100% 100%, 12.5% 100%;
}

.service-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: var(--steel);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--orange);
}

.service-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-display), "Arial Narrow", sans-serif;
  font-size: clamp(5.2rem, 9vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.8;
  text-transform: uppercase;
}

.service-hero h1 span {
  color: var(--orange);
}

.service-hero-copy > p {
  max-width: 680px;
  margin: 2rem 0;
  color: rgba(242, 234, 220, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.75;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-hero-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.service-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 19, 21, 0.35), transparent 35%);
  pointer-events: none;
}

.service-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(50px, 8vw, 120px);
  max-width: 1420px;
  margin: 0 auto;
  padding: clamp(80px, 9vw, 140px) clamp(24px, 6vw, 90px);
}

.service-content {
  max-width: 860px;
}

.service-content h2,
.related-services h2 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display), "Arial Narrow", sans-serif;
  font-size: clamp(3.6rem, 6vw, 6.4rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.service-content h3 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.service-content p,
.service-content li {
  color: rgba(242, 234, 220, 0.76);
  font-size: 1.02rem;
  line-height: 1.85;
}

.service-content ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.2rem;
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 3.5rem 0;
  border: 1px solid var(--line);
}

.service-facts div {
  min-height: 140px;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.service-facts div:last-child {
  border-right: 0;
}

.service-facts span {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-facts strong {
  font-size: 1rem;
  line-height: 1.45;
}

.service-aside {
  align-self: start;
  position: sticky;
  top: 120px;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--ink-2);
}

.service-aside .section-kicker {
  margin-top: 0;
}

.service-aside h2 {
  margin: 1.5rem 0;
  font-family: var(--font-display), "Arial Narrow", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.service-aside p {
  color: rgba(242, 234, 220, 0.7);
  line-height: 1.7;
}

.service-aside .button {
  margin-top: 1rem;
}

.related-services {
  padding: clamp(80px, 9vw, 130px) clamp(24px, 6vw, 90px);
  border-top: 1px solid var(--line);
  background: var(--ink-2);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1420px;
  margin: 3rem auto 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.related-grid a {
  min-height: 190px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.related-grid span {
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-grid strong {
  display: block;
  margin-top: 3rem;
  font-size: 1.2rem;
}

.related-grid a:hover,
.related-grid a:focus-visible {
  background: var(--orange);
}

.related-grid a:hover span,
.related-grid a:focus-visible span {
  color: var(--ink);
}

.service-page footer {
  max-width: none;
}

@media (max-width: 1050px) {
  .service-hero {
    grid-template-columns: 1fr;
  }

  .service-hero-visual {
    min-height: 60vw;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-body {
    grid-template-columns: 1fr;
  }

  .service-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .service-hero-copy {
    padding: 70px 24px;
  }

  .service-hero h1 {
    font-size: clamp(4.6rem, 21vw, 7rem);
  }

  .service-hero-actions {
    flex-direction: column;
  }

  .service-facts,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .service-facts div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-facts div:last-child {
    border-bottom: 0;
  }
}
