/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--green-pale) 40%, var(--orange-light) 70%, var(--cream) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,167,106,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(165,194,58,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr 280px;
    gap: 48px;
  }
}

.hero-center {
  order: 1;
}

.hero-bear-area {
  order: 2;
  display: none;
  justify-content: center;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-bear-area {
    display: flex;
  }
}

.hero-bear-illustration {
  width: 260px;
  height: auto;
  animation: bearBounce 4s ease-in-out infinite;
}

@keyframes bearBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(165,194,58,0.08);
  border: 1px solid rgba(165,194,58,0.15);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 32px;
}

.hero-tagline-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.hero-heading {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-heading-accent {
  color: var(--green);
}

.hero-description {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 2;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(165,194,58,0.25);
}

.hero-cta:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(165,194,58,0.35);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(3px);
}
