/* ============================================================
   hero.css — hero section
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) var(--gap) 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(201, 169, 97, .10), transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(10, 8, 6, .9), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  max-width: 820px;
}

.hero__logo {
  width: clamp(210px, 42vw, 380px);
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, .6)) drop-shadow(0 0 46px rgba(201, 169, 97, .14));
  animation: hero-float 7s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero__title {
  font-family: var(--f-title);
  font-weight: 700;
  font-size: clamp(1.7rem, 5.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition-delay: .1s;
}

.hero__values {
  display: flex;
  align-items: center;
  gap: clamp(.6rem, 2.5vw, 1.4rem);
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--f-title);
  font-weight: 600;
  font-size: clamp(.85rem, 2.6vw, 1.35rem);
  letter-spacing: .22em;
  transition-delay: .2s;
}
.hero__value--jade  { color: #6fbf9a; }
.hero__value--gold  { color: var(--gold-light); }
.hero__value--earth { color: #d46a6d; }
.hero__dot { color: var(--gold); font-size: .6em; opacity: .8; }

.hero__sub {
  color: var(--bone-dim);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 300;
  max-width: 40ch;
  transition-delay: .3s;
}

.hero .btn--lg { transition-delay: .4s; }

.hero__scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: .6rem auto 0;
  background: linear-gradient(var(--gold), transparent);
  animation: scroll-pulse 2.2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scroll-pulse {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(12px); opacity: 0; }
}
