/* ---------------- Hero (cinematic) ---------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--pad) 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 50%, #1a1408 0%, #0a0905 40%, #050505 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__media-inner {
  position: relative;
  width: min(620px, 80vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__halo {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(201, 168, 106, 0.28);
  border-radius: 50%;
  animation: haloPulse 8s ease-in-out infinite;
}
.hero__halo--2 {
  inset: -4%;
  border-color: rgba(201, 168, 106, 0.16);
  animation-delay: -2s;
}
.hero__halo--3 {
  inset: -22%;
  border-color: rgba(201, 168, 106, 0.08);
  animation-delay: -4s;
}
.hero__beam {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 50%, rgba(201,168,106,0.35) 0%, rgba(201,168,106,0.08) 35%, transparent 70%);
  filter: blur(28px);
  animation: beamPulse 6s ease-in-out infinite;
}
@keyframes beamPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero__grid {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(201, 168, 106, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 106, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 60%);
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
  to { background-position: 80px 80px; }
}
.hero__placeholder-note {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.5);
  border: 1px dashed var(--line-strong);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.hero__placeholder-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.85) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(10,10,10,0.7) 80%);
}

.hero__content {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding-top: 40px;
}
.hero__title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 28px 0 32px;
  max-width: 16ch;
}
.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: titleIn 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__title-line:nth-child(2) {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 400;
}
@keyframes titleIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero__lead {
  max-width: 620px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-dim);
  margin-bottom: 18px;
  opacity: 0;
  animation: titleIn 0.9s 0.5s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__tag {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
  font-style: italic;
  letter-spacing: -0.005em;
  margin-bottom: 40px;
  opacity: 0;
  animation: titleIn 0.9s 0.7s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__tag-dash {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: titleIn 0.9s 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: var(--pad);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.2s;
}
.hero__scroll:hover { color: var(--gold); }
.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--text-faint), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  from { left: -30%; }
  to { left: 100%; }
}

@media (max-width: 640px) {
  .hero__scroll { display: none; }
}

/* ---------------- Page hero ---------------- */
.pagehero {
  position: relative;
  padding: 180px var(--pad) 100px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.pagehero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.pagehero__title {
  font-size: clamp(44px, 7vw, 96px);
  margin: 24px 0 28px;
  max-width: 18ch;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pagehero__title span { display: block; }
.pagehero__title span:nth-child(2) {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 400;
}
.pagehero__lead {
  max-width: 640px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--text-dim);
}
.pagehero__decor {
  position: absolute;
  top: 60%;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,106,0.18) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}
