/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

/* Background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,14,12,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,12,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
}

/* Orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: floatOrb 12s ease-in-out infinite alternate;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #D4B880 0%, transparent 70%);
  top: -10%; right: 5%;
  animation-duration: 14s;
}
.hero__orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #C8A96E 0%, transparent 70%);
  bottom: 10%; left: -5%;
  animation-duration: 10s;
  animation-delay: -4s;
}
.hero__orb--3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #E8D5A3 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-duration: 18s;
  animation-delay: -8s;
}

@keyframes floatOrb {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.08); }
}

/* Content */
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.hero__title {
  margin-bottom: 1.5rem;
  max-width: 14ch;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--clr-text-muted);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1;
}
.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}
.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: var(--clr-border);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--clr-accent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}
