/* Homepage — hero motion, reveal, product grid, USP hover */

.v2-hero--home {
  position: relative;
  overflow: hidden;
  background-color: #1c1510;
}

.v2-hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--v2-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.v2-hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(28, 21, 16, 0.72) 0%, rgba(42, 24, 16, 0.58) 45%, rgba(28, 21, 16, 0.78) 100%),
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(224, 152, 64, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.v2-hero--home .v2-container {
  position: relative;
  z-index: 2;
}

.v2-hero__eyebrow {
  opacity: 0.88;
  letter-spacing: 0.06em;
}

.v2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 961px) {
  .v2-hero--home::after {
    background-position: center right;
  }

  .v2-hero--home .v2-hero__content {
    margin-inline: 0;
    margin-right: auto;
    max-width: min(560px, 52%);
  }
}

.v2-hero-values {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.v2-hero-values__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(0.5rem);
  animation: v2-hero-value-in 0.55s ease forwards;
}

.v2-hero-values__item--2 {
  animation-delay: 0.1s;
}

.v2-hero-values__item--3 {
  animation-delay: 0.2s;
}

.v2-hero-values__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  color: rgba(255, 220, 170, 0.95);
}

.v2-hero-values__text {
  letter-spacing: 0.01em;
}

@keyframes v2-hero-value-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-hero-values__item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.v2-home-products__lead {
  margin-top: -0.75rem;
  margin-bottom: 1rem;
}

.v2-home-products__cta {
  margin: 0;
  text-align: center;
}

.v2-home-topics {
  margin-top: 1.75rem;
  text-align: center;
}

.v2-home-topics__title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.v2-home-topics .v2-chip-row {
  justify-content: center;
}

/* Homepage product grid — 4 columns desktop, 2 mobile */
.v2-main--home ul.products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .v2-main--home ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Scroll reveal */
.v2-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.v2-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.v2-hero .v2-reveal {
  transition-delay: 0.1s;
}

/* USP hover — homepage only */
.v2-main--home .v2-usp__item {
  transition: transform var(--v2-transition), box-shadow var(--v2-transition), border-color var(--v2-transition);
}

.v2-main--home .v2-usp__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow-md);
  border-color: rgba(224, 152, 64, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .v2-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
