/* ---------------------------
   Hero — Berry Finds
   Warm, inviting, organic
---------------------------- */

.bf-hero {
  padding: var(--sp-12) 0 var(--sp-16);
  position: relative;
  overflow: visible;
}

.bf-hero__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  position: relative;
}

.bf-hero__content {
  flex: 1;
}

.bf-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: var(--sp-5);
}

.bf-hero__title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-heading);
  margin-bottom: var(--sp-5);
  letter-spacing: -0.02em;
}

.bf-hero__title em {
  font-style: italic;
  color: var(--accent);
}

.bf-hero__subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: var(--sp-8);
}

.bf-hero__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.bf-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--t-ui) var(--ease);
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}

.bf-hero__cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.25);
}

.bf-hero__cta--outline {
  background: transparent;
  color: var(--accent);
}

.bf-hero__cta--outline:hover {
  background: var(--accent);
  color: #fff;
}

.bf-hero__visual {
  flex-shrink: 0;
  width: 320px;
}

.bf-hero__mascot {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(230, 57, 70, 0.15));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .bf-hero {
    padding: var(--sp-8) 0 var(--sp-10);
  }

  .bf-hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .bf-hero__title {
    font-size: 2.2rem;
  }

  .bf-hero__subtitle {
    max-width: 100%;
  }

  .bf-hero__actions {
    justify-content: center;
  }

  .bf-hero__visual {
    width: 200px;
    order: -1;
  }
}
