/* ============================================================
   BBN CATERERS — HERO SECTION (Brand-Aligned)
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

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

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 12s ease forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.00);
  }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(28, 26, 23, 0.82) 0%,
      rgba(46, 43, 38, 0.70) 45%,
      rgba(137, 120, 92, 0.18) 100%);
}

/* Top vignette for nav readability */
.hero__bg-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(28, 26, 23, 0.60), transparent);
}

/* Bottom fade */
.hero__bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(243, 239, 232, 0.20), transparent);
}

/* ─── Content ─── */
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + var(--space-32));
  padding-bottom: var(--space-32);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-8);
  width: 100%;
}

/* ─── Eyebrow ─── */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  animation: fadeInDown 0.9s ease both;
}

.hero__eyebrow-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--color-beige-light);
  opacity: 0.6;
}

.hero__eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-beige-light);
}

/* ─── Main Headline ─── */
.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-4xl), 7vw, 82px);
  font-weight: var(--fw-light);
  color: var(--color-cream);
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: var(--space-8);
  animation: fadeInUp 1s 0.2s ease both;
  letter-spacing: -0.01em;
}

.hero__headline .italic-em {
  font-style: italic;
  color: var(--color-beige-light);
  font-weight: var(--fw-light);
}

.hero__headline .em-dash {
  color: var(--color-taupe-light);
  margin: 0 0.15em;
  font-style: normal;
}

/* ─── Sub text ─── */
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(var(--text-sm), 1.5vw, var(--text-lg));
  color: rgba(184, 173, 155, 0.85);
  max-width: 580px;
  line-height: 1.80;
  margin-bottom: var(--space-10);
  font-weight: var(--fw-light);
  letter-spacing: 0.01em;
  animation: fadeInUp 1s 0.4s ease both;
}

/* ─── CTA Buttons ─── */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  animation: fadeInUp 1s 0.6s ease both;
}

/* ─── Divider line ─── */
.hero__meta-divider {
  width: 100%;
  height: 1px;
  background: rgba(137, 120, 92, 0.25);
  margin: var(--space-12) 0 var(--space-8);
  animation: fadeInUp 1s 0.8s ease both;
}

/* ─── Stats ─── */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  width: fit-content;
  animation: fadeInUp 1s 0.9s ease both;
}

/* ─── Scroll indicator ─── */
.hero__scroll {
  position: absolute;
  bottom: var(--space-10);
  left: var(--space-8);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: fadeIn 1s 1.5s ease both;
  text-decoration: none;
}

.hero__scroll-line {
  width: 32px;
  height: 1px;
  background: var(--color-beige-light);
  opacity: 0.5;
  animation: expand 2s ease-in-out infinite;
}

@keyframes expand {

  0%,
  100% {
    width: 32px;
    opacity: 0.5;
  }

  50% {
    width: 48px;
    opacity: 0.9;
  }
}

.hero__scroll-text {
  font-family: var(--font-body);
  font-size: 0.60rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(184, 173, 155, 0.60);
}

/* ─── Hero Supporting Ecosystem Strip ─── */
.hero-strip {
  position: relative;
  z-index: 2;
  background: var(--color-dark);
  padding: var(--space-6) 0;
}

.hero-strip__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-8);
}

.hero-strip__item {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(184, 173, 155, 0.70);
  transition: color var(--transition-fast);
}

.hero-strip__item:hover {
  color: var(--color-beige-light);
}

.hero-strip__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-taupe);
  opacity: 0.40;
  flex-shrink: 0;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero__content {
    padding-top: calc(var(--nav-height) + var(--space-20));
    padding-bottom: var(--space-20);
    padding-inline: var(--space-5);
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .hero-strip__dot {
    display: none;
  }

  .hero__scroll {
    display: none;
  }
}