/**
 * Nextiva-style footer wordmark: big type with foreground plants overlapping the bottom.
 * Minnesota theme: showy lady’s slipper + red/white pine silhouettes.
 */
.pbg-footer-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(280px, 42vw, 420px);
  overflow: hidden;
}

.pbg-footer-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    165deg,
    #0a2f2a 0%,
    #134038 28%,
    #1d5c52 52%,
    #b85a3c 88%,
    #8f3d28 100%
  );
}

.pbg-footer-hero__moon {
  position: absolute;
  top: 10%;
  right: 10%;
  width: clamp(56px, 12vw, 100px);
  height: clamp(56px, 12vw, 100px);
  border-radius: 50%;
  background: rgba(255, 248, 240, 0.14);
  box-shadow: 0 0 60px rgba(255, 235, 210, 0.12);
  z-index: 1;
  pointer-events: none;
}

.pbg-footer-hero__hills {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22%;
  height: 38%;
  z-index: 2;
  pointer-events: none;
  color: rgba(5, 22, 18, 0.55);
}

.pbg-footer-hero__word {
  position: absolute;
  left: 50%;
  bottom: clamp(8%, 14vh, 18%);
  transform: translateX(-50%);
  z-index: 10;
  margin: 0;
  padding: 0;
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(3.25rem, 14vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
  user-select: none;
  pointer-events: none;
}

.pbg-footer-hero__plants {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  height: clamp(180px, 48%, 320px);
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pbg-footer-hero__plants svg {
  width: 100%;
  max-width: min(1100px, 100%);
  height: 100%;
  display: block;
}

/* Slight lift on large screens so overlap reads like Nextiva */
@media (min-width: 1024px) {
  .pbg-footer-hero__word {
    bottom: clamp(10%, 16vh, 20%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pbg-footer-hero__word {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  }
}
