.page-shell {
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.page-hero {
  max-width: 920px;
  padding-top: clamp(4.5rem, 10vw, 6.25rem);
  padding-bottom: 2rem;
}

.page-kicker {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.98;
  max-width: 11ch;
}

.page-lead {
  max-width: 40rem;
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.page-content {
  max-width: 1080px;
}

.content-block + .content-block {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
}

.content-block h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.9rem;
}

.content-block h3 {
  font-size: 1.18rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card,
.contact-panel {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.feature-card p:last-child,
.contact-panel p:last-child {
  margin-bottom: 0;
}

.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.detail-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--color-text-muted);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #111111;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.callout-note {
  padding: 1.1rem 1.2rem;
  border-left: 3px solid #111111;
  background: rgba(17, 17, 17, 0.04);
  border-radius: 0 1rem 1rem 0;
  color: var(--color-text-muted);
}

.contact-meta {
  display: grid;
  gap: 0.45rem;
}

@media (max-width: 760px) {
  .page-hero h1 {
    max-width: none;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .action-row .btn {
    width: 100%;
  }
}
