.explore {
  padding: 5rem 0;
  background: #fefae0;
  background-image: radial-gradient(
    circle at top,
    rgba(96, 108, 56, 0.08),
    transparent 60%
  );
}

.explore__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.explore__header {
  text-align: center;
  margin-bottom: 3rem;
  display: grid;
  gap: 0.75rem;
}

.explore__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #283618;
  margin: 0;
}

.explore__subtitle {
  font-size: 1.125rem;
  color: rgba(40, 54, 24, 0.7);
  max-width: 36rem;
  margin: 0 auto;
}

@keyframes explore-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.explore__fade {
  animation: explore-fade-up 0.9s ease-out both;
}

.sectors {
  padding: 5rem 0;
  background: #283618;
  color: #ffffff;
}

.sectors__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sectors__header {
  text-align: center;
  margin-bottom: 3rem;
  display: grid;
  gap: 0.75rem;
}

.sectors__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0;
}

.sectors__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  margin: 0 auto;
}

.sectors__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sectors__link {
  text-decoration: none;
  color: inherit;
}

.sectors__card {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.sectors__card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.sectors__icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.sectors__name {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}

.sectors__desc {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.sectors__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.sectors__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1.5rem;
  border-radius: 0.5rem;
  background: #717d4e;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.sectors__button:hover {
  background: #5f6f3f;
}

.sectors__button-icon {
  width: 1rem;
  height: 1rem;
}

@keyframes sectors-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sectors__fade {
  animation: sectors-fade-up 0.9s ease-out both;
}

@media (min-width: 768px) {
  .sectors__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sectors__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.featured {
  padding: 5rem 0;
  background: #fefae0;
  background-image: radial-gradient(
    circle at bottom,
    rgba(188, 108, 37, 0.08),
    transparent 60%
  );
}

.featured__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.featured__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.featured__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #283618;
  margin: 0 0 0.5rem;
}

.featured__subtitle {
  font-size: 1.125rem;
  color: rgba(40, 54, 24, 0.7);
  margin: 0;
}

.featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #606c38;
  color: #606c38;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.featured__cta:hover {
  background: #606c38;
  color: #ffffff;
}

.featured__cta-icon {
  width: 1rem;
  height: 1rem;
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

.featured__link {
  text-decoration: none;
  color: inherit;
}

.featured__card {
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(40, 54, 24, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(40, 54, 24, 0.12);
}

.featured__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(2, 62, 138, 0.1));
}

.featured__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.featured__card:hover .featured__image {
  transform: scale(1.05);
}

.featured__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.featured__image-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}

.featured__name {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.featured__family {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-style: italic;
  margin: 0.25rem 0 0;
}

@keyframes featured-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured__fade {
  animation: featured-fade-up 0.9s ease-out both;
}

@media (min-width: 768px) {
  .featured__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .featured__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .featured__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about {
  padding: 5rem 0;
  background: linear-gradient(135deg, #606c38, #283618);
  color: #ffffff;
}

.about__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about__content {
  display: grid;
  gap: 1.5rem;
}

.about__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0;
}

.about__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.7;
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about__highlight {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.about__icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #717d4e;
}

.about__value {
  margin: 0;
  font-weight: 600;
}

.about__label {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.about__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1.5rem;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #283618;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.about__button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.about__button-icon {
  width: 1rem;
  height: 1rem;
}

.about__media {
  position: relative;
}

.about__image-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.25);
}

.about__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #ffffff;
  color: #283618;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.about__badge-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #606c38;
  margin: 0;
}

.about__badge-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0.25rem 0 0;
}

@keyframes about-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about__fade {
  animation: about-fade-up 0.9s ease-out both;
}

.about__fade-delay {
  animation: about-fade-up 1.1s ease-out both;
  animation-delay: 0.2s;
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.scroll-indicator {
  pointer-events: none;
  position: fixed;
  left: 50%;
  bottom: clamp(1.25rem, 4vh, 2.5rem);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  transform: translate(-50%, 0.5rem);
  color: #fffef6;
  opacity: 0;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.36));
  transition: opacity 420ms ease, transform 420ms ease;
}

.scroll-indicator.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.scroll-indicator__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(255, 254, 246, 0.45);
  border-radius: 999px;
  background: rgba(20, 24, 14, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  animation: scroll-indicator-float 1.65s ease-in-out infinite;
}

.scroll-indicator__button::before {
  content: "";
  position: absolute;
  inset: -0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 254, 246, 0.26);
  animation: scroll-indicator-pulse 1.9s ease-out infinite;
}

.scroll-indicator__chevron {
  display: block;
  width: 0.78rem;
  height: 0.78rem;
  border-right: 2px solid rgba(255, 254, 246, 0.94);
  border-bottom: 2px solid rgba(255, 254, 246, 0.94);
  transform: translateY(-0.12rem) rotate(45deg);
}

@keyframes scroll-indicator-float {
  0%,
  100% {
    transform: translateY(-0.16rem);
  }
  50% {
    transform: translateY(0.32rem);
  }
}

@keyframes scroll-indicator-pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.82);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-indicator,
  .scroll-indicator__button,
  .scroll-indicator__button::before {
    animation: none;
    transition: none;
  }
}

