/* Hero LCP — tiny stylesheet loads before full Tailwind bundle */
.hero-photo {
  position: relative;
  min-height: min(85vh, 800px);
  display: flex;
  align-items: center;
  background: #f7f7f7;
  overflow: hidden;
}

.hero-photo__image {
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.hero-photo__image img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(247, 247, 247, 0.97) 0%,
    rgba(247, 247, 247, 0.85) 45%,
    rgba(247, 247, 247, 0.4) 100%
  );
}
