/* Homepage hero: matches designs/product-mockup-gallery.html Banner 1 (Find Your Krew) - deep forest + grid, no photo */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  background: var(--color-deep-forest);
  color: var(--color-white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(0, 0, 0, 0.08) 60px,
      rgba(0, 0, 0, 0.08) 61px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(0, 0, 0, 0.08) 60px,
      rgba(0, 0, 0, 0.08) 61px
    );
  pointer-events: none;
}

@media (min-width: 1280px) {
  .hero {
    min-height: 80vh;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a3b894;
  margin-bottom: var(--space-md);
}

.hero__title {
  font-size: clamp(var(--font-size-3xl), 8vw, 4.5rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.hero__sub {
  font-size: var(--font-size-md);
  font-weight: 400;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.65;
}

.hero__cta {
  margin-bottom: var(--space-md);
}

.hero__note {
  font-size: var(--font-size-sm);
  opacity: 0.7;
}

.collection-hero {
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-2xl) var(--space-lg);
  background:
    linear-gradient(to top, rgba(60, 77, 51, 0.95), rgba(60, 77, 51, 0.55)),
    var(--collection-hero-img, none) center / cover no-repeat;
  color: var(--color-white);
}

@media (min-width: 1280px) {
  .collection-hero {
    min-height: 400px;
  }
}

.collection-hero__tagline {
  font-family: var(--font-heading);
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--color-taupe);
  margin-bottom: var(--space-sm);
}

.collection-hero__subline {
  font-family: var(--font-heading);
  font-size: var(--font-size-md);
  font-weight: 600;
  color: #c77b9e;
  margin: calc(var(--space-sm) * -1) 0 var(--space-md);
  letter-spacing: 0.03em;
}

.collection-hero__title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
}

.collection-hero__desc {
  max-width: 42rem;
  opacity: 0.92;
  line-height: 1.65;
}

.page-hero--taupe {
  background: var(--color-taupe);
  padding: var(--space-4xl) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

.page-hero--taupe h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
  color: var(--color-deep-forest);
}

.page-hero--taupe p {
  font-size: var(--font-size-lg);
  color: var(--color-moss);
  max-width: 36rem;
  margin: 0 auto;
}
