/* Inner page hero */
.page-hero {
  padding-block: calc(var(--header-height) + 3rem) 2.5rem;
  background: var(--color-base);
}

.page-hero .section__label::before {
  display: none;
}

.page-hero__title {
  max-width: 16ch;
  margin-bottom: 0.75rem;
}

.page-hero__lead {
  max-width: 28rem;
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-main);
}

.page-visual {
  width: 100%;
  overflow: hidden;
}

.page-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 32rem;
  object-fit: cover;
}

.page-visual--montage {
  padding-block: 0 1rem;
  background: var(--color-base);
}

.page-visual--montage .container {
  padding-block: 0;
}

.page-visual__grid {
  display: grid;
  gap: 0.875rem;
}

.page-visual__grid img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .page-visual__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
  }

  .page-visual__grid img:first-child {
    aspect-ratio: 16 / 11;
    max-height: none;
    height: 100%;
  }

  .page-visual__grid img:last-child {
    aspect-ratio: 4 / 5;
    max-height: none;
    height: 100%;
  }
}

.prose {
  max-width: 40rem;
}

.prose p + p {
  margin-top: 1.25rem;
}

.prose strong {
  font-weight: 500;
  color: var(--color-main);
}

.prose a {
  color: var(--color-main);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--color-ai);
}

.prose--spaced {
  margin-bottom: 1.5rem;
}

.external-link {
  padding: 4rem 1.5rem;
  text-align: center;
  background: var(--color-main);
  color: rgba(255, 255, 255, 0.72);
}

.external-link__title {
  margin-bottom: 0.75rem;
  color: #fff;
}

.external-link__body {
  max-width: 32rem;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: var(--text-small);
}

.related-services {
  padding-block: var(--space-section);
  background: var(--color-mist);
}

.related-services__title {
  margin-bottom: var(--space-block);
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.process-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-list__item {
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}

.process-list__number {
  display: block;
  margin-bottom: 0.375rem;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-cast);
}

.process-list__title {
  margin-bottom: 0.375rem;
  font-size: 1rem;
}

.process-list__body {
  font-size: var(--text-small);
  line-height: 1.75;
}

.specialty-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.specialty-list__item {
  padding: 0.5rem 1rem;
  font-size: var(--text-small);
  color: var(--color-main);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
}

.page-cta {
  text-align: center;
}

.page-cta__title {
  margin-bottom: 1.5rem;
}
