/* ============================================================
   hero.css — homepage hero, status pill, oversized monogram
   ============================================================ */

.hero {
  padding-block: clamp(5rem, 12vw, 9rem) clamp(4rem, 9vw, 7rem);
  position: relative;
  overflow: hidden;
}

.hero__status {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
  padding: 0.4rem 0.875rem 0.4rem 0.75rem;
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.hero__status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--status-dot);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--status-dot) 25%, transparent);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px color-mix(in srgb, var(--status-dot) 25%, transparent); }
  50%      { box-shadow: 0 0 0 6px color-mix(in srgb, var(--status-dot) 8%, transparent); }
}

.hero__lede {
  font-size: clamp(1.125rem, 1.7vw, 1.3125rem);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 42rem;
  margin-block: 2rem 2.75rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Decorative oversized monogram in hero — subtle background presence */
.hero__watermark {
  position: absolute;
  top: 50%;
  right: -2vw;
  transform: translateY(-50%);
  width: clamp(280px, 38vw, 560px);
  height: auto;
  opacity: 0.045;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 880px) {
  .hero__watermark {
    right: -10vw;
    top: 70%;
    width: 360px;
    opacity: 0.04;
  }
}
