/* SayRaye v1.0 — homepage hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: clamp(8rem, 14vh, 11rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .95fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 78% 32%, rgba(185, 151, 91, .16), transparent 28rem),
    linear-gradient(135deg, #111 0%, var(--ink) 58%, #080706 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  max-width: 38rem;
  margin-bottom: 1.35rem;
  color: var(--gold-light);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .21em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  font: clamp(4.4rem, 9.6vw, 10rem)/.82 var(--font-display);
  letter-spacing: -.055em;
}

.hero h1 em {
  display: block;
  color: var(--gold-light);
  font-weight: inherit;
}

.hero-deck {
  max-width: 42rem;
  margin-top: 2rem;
  color: #b9b3aa;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.cover-card {
  position: relative;
  z-index: 2;
  width: min(31rem, 78vw);
  aspect-ratio: 4 / 5;
  padding: 1.35rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  place-items: center;
  background: linear-gradient(145deg, #1c1914, #070707 70%);
  border: 1px solid rgba(213, 189, 140, .35);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.cover-top,
.cover-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.cover-top {
  color: var(--gold-light);
  font-size: .58rem;
  letter-spacing: .2em;
}

.cover-bottom {
  color: var(--paper);
  font: clamp(2rem, 4vw, 4.2rem)/1 var(--font-display);
  letter-spacing: .08em;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(185, 151, 91, .28);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one { width: 125%; aspect-ratio: 1; }
.orbit-two { width: 92%; aspect-ratio: 1; transform: rotate(28deg); }

.scroll-note {
  position: absolute;
  left: var(--pad);
  bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--muted);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-note span {
  width: 3rem;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 56.25rem) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 8rem;
  }

  .hero-art { margin-top: 1rem; }
  .scroll-note { display: none; }
}

@media (max-width: 35rem) {
  .hero h1 { font-size: clamp(3.85rem, 19vw, 5.25rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
}
