.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 222, 144, 0.45), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(109, 15, 20, 0.13), transparent 38%),
    linear-gradient(135deg, #fffaf1 0%, #fffdf8 55%, #f8f5ef 100%);
  border-bottom: 1px solid rgba(155, 91, 18, 0.14);
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.home-hero::before {
  width: 180px;
  height: 180px;
  top: 28px;
  right: 9%;
  background: radial-gradient(circle, rgba(255, 213, 141, 0.6), rgba(255, 213, 141, 0));
  animation: haloDrift 12s ease-in-out infinite;
}

.home-hero::after {
  width: 130px;
  height: 130px;
  bottom: 24px;
  left: 10%;
  background: radial-gradient(circle, rgba(109, 15, 20, 0.18), rgba(109, 15, 20, 0));
  animation: haloDriftReverse 14s ease-in-out infinite;
}

.hero-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(155, 91, 18, 0.18);
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 14px 34px rgba(94, 72, 32, 0.14);
  backdrop-filter: blur(2px);
}

.hero-kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #7a4b05;
  border-bottom: 2px solid #d8a44a;
  padding-bottom: 4px;
  animation: shimmerLine 3.5s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.18;
  font-weight: 800;
  color: #4d2803;
}

.hero-text {
  color: #56422a;
  font-size: 1.03rem;
  max-width: 880px;
}

.section-heading {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #5d2f09;
}

.about-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(155, 91, 18, 0.16);
  box-shadow: 0 10px 26px rgba(93, 53, 9, 0.11);
}

.about-panel p {
  color: #5f4f3b;
  line-height: 1.72;
}

.guru-card {
  height: 100%;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(109, 15, 20, 0.12);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.guru-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 34px rgba(75, 42, 8, 0.14);
  border-color: rgba(109, 15, 20, 0.24);
}

.guru-card-wide {
  grid-template-columns: 240px 1fr;
}

.guru-media {
  background: linear-gradient(145deg, #e9d7a9 0%, #fff4d8 100%);
  min-height: 100%;
}

.guru-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.55s ease;
}

.guru-card:hover .guru-media img {
  transform: scale(1.06);
}

.guru-media.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  font-weight: 800;
  color: #7d5615;
}

.guru-content {
  padding: 24px;
}

.guru-content h3 {
  margin-bottom: 10px;
  font-weight: 700;
  color: #5a2b08;
}

.guru-content p {
  color: #5f4f3b;
  line-height: 1.68;
}

.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes haloDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-14px, 10px) scale(1.06);
  }
}

@keyframes haloDriftReverse {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(12px, -8px) scale(1.09);
  }
}

@keyframes shimmerLine {
  0%,
  100% {
    border-bottom-color: #d8a44a;
  }

  50% {
    border-bottom-color: #f0c15f;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero::before,
  .home-hero::after,
  .hero-kicker {
    animation: none;
  }

  .reveal-up,
  .guru-card,
  .guru-media img {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .hero-card {
    padding: 28px;
  }

  .guru-card,
  .guru-card-wide {
    grid-template-columns: 1fr;
  }

  .guru-media {
    min-height: 210px;
  }
}

@media (max-width: 576px) {
  .hero-card {
    padding: 24px;
    border-radius: 18px;
  }

  .about-panel {
    padding: 22px;
  }

  .guru-content {
    padding: 20px;
  }
}
