.catalog-page {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(130px, 18vh, 190px) var(--pad) clamp(72px, 10vh, 110px);
}

.catalog-banner {
  position: relative;
  overflow: hidden;
  width: min(100%, 820px);
  padding: clamp(42px, 7vw, 78px);
  text-align: center;
  border: 1px solid rgba(217, 164, 65, .25);
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 164, 65, .16), transparent 48%),
    rgba(12, 9, 6, .78);
  box-shadow: 0 36px 100px rgba(0, 0, 0, .34);
}

.catalog-banner::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(237, 231, 220, .06);
  pointer-events: none;
}

.catalog-status {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.catalog-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(217, 164, 65, .75);
}

.catalog-title {
  position: relative;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin-bottom: 24px;
}

.catalog-copy {
  position: relative;
  max-width: 58ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.85;
}

.catalog-copy strong {
  color: var(--marble);
  font-weight: 400;
}

.catalog-actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.lost {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--pad);
}

.lost__n {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(90px, 18vw, 190px);
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--gold-lt);
  margin-bottom: 8px;
}

.lost__t {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.lost__p {
  font-size: 14px;
  color: var(--muted);
  max-width: 44ch;
  margin: 0 auto 38px;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .catalog-banner {
    padding: 42px 24px;
  }

  .catalog-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-actions .btn {
    justify-content: center;
  }
}
