/* Noir hero — bottom-left anchored display over dark media (frame 2:21). */

.nr-hero {
  position: relative;
  height: var(--nr-hero-height, 760px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 80px;
  overflow: hidden;
}
.nr-hero__media { position: absolute; inset: 0; pointer-events: none; }
.nr-hero__img,
.nr-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.nr-hero__overlay { position: absolute; inset: 0; background: #000000; }

.nr-hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 700px;
}
.nr-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0;
}
.nr-hero__heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0;
}
.nr-hero__cta-wrap { padding-top: 16px; }
.nr-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--color-primary);
  color: #000000;
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: filter var(--transition-fast), transform var(--transition-fast);
}
.nr-hero__cta:hover { filter: brightness(1.08); color: #000000; transform: translateY(-1px); }

@media (max-width: 768px) {
  .nr-hero { padding: 0 24px 48px; height: max(420px, calc(var(--nr-hero-height, 760px) * 0.68)); }
  .nr-hero__content { gap: 16px; }
}
