/* ===================================================================
   BUN & BURNS — HERO
   =================================================================== */

.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bb-black);
  padding-top: var(--nav-height);
}

.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.46;
  transform: scale(1.05);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift{
  0%{ transform: scale(1.05) translate(0,0); }
  100%{ transform: scale(1.1) translate(-1.2%, -1%); }
}

.hero-bg::after{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(11,11,11,0.25) 0%, rgba(11,11,11,0.86) 72%, var(--bb-black) 100%),
    linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.3) 30%, rgba(11,11,11,0.5) 65%, var(--bb-black) 100%);
}

/* Ember particle canvas — the signature motion motif */
#emberCanvas{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: var(--sp-6) 0;
}

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px 9px 12px;
  border-radius: var(--r-pill);
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--bb-line);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bb-gold-light);
  margin-bottom: var(--sp-4);
  animation: heroFadeIn 1s var(--ease-out) 0.2s both;
}
.hero-badge .dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bb-ember);
  box-shadow: 0 0 0 3px rgba(226,100,29,0.25);
  animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.4); }
}

.hero h1{
  font-size: clamp(3rem, 8.6vw, 7.2rem);
  color: var(--bb-white);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.015em;
  animation: heroFadeIn 1s var(--ease-out) 0.35s both;
}
.hero h1 .accent{
  display: block;
  font-style: italic;
  font-weight: 500;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 30px rgba(212,175,55,0.25));
}

.hero-tagline{
  margin-top: var(--sp-4);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--bb-gray);
  font-weight: 400;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  animation: heroFadeIn 1s var(--ease-out) 0.5s both;
}
.hero-tagline strong{ color: var(--bb-white); font-weight: 600; }

.hero-cta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
  animation: heroFadeIn 1s var(--ease-out) 0.65s both;
}

@keyframes heroFadeIn{
  from{ opacity: 0; transform: translateY(22px); }
  to{ opacity: 1; transform: translateY(0); }
}

.hero-stats{
  display: flex;
  justify-content: center;
  gap: clamp(1.6rem, 5vw, 4.5rem);
  margin-top: var(--sp-7);
  flex-wrap: wrap;
  animation: heroFadeIn 1s var(--ease-out) 0.8s both;
}
.hero-stat{
  text-align: center;
}
.hero-stat .num{
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--bb-gold);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.hero-stat .label{
  font-size: 0.78rem;
  color: var(--bb-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.scroll-cue{
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--bb-gray);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  animation: heroFadeIn 1s var(--ease-out) 1.1s both;
}
.scroll-cue .stick{
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--bb-gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue .stick::after{
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--bb-gold-light);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{ top: -50%; }
  100%{ top: 110%; }
}

@media (max-width: 768px){
  .hero{ min-height: 92vh; }
  .hero-stats{ gap: 1.6rem 2.4rem; }
  .scroll-cue{ display: none; }
}

@media (max-width: 480px){
  .hero-cta{ flex-direction: column; width: 100%; padding: 0 1rem; }
  .hero-cta .btn{ width: 100%; }
}
