.hero {
  display: flex;
  min-height: 65vh;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.42)),
    url("/assets/images/about-hero.jpg") center 40% / cover no-repeat;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.42)),
    image-set(
      url("/assets/images/about-hero.avif") type("image/avif"),
      url("/assets/images/about-hero.webp") type("image/webp"),
      url("/assets/images/about-hero.jpg") type("image/jpeg")
    ) center 40% / cover no-repeat;
  text-align: center;
}

.about-hero-title {
  margin: 20px;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.about-hero-title h1 {
  font: 400 clamp(42px, 7vw, 72px) / 1.05 "DM Serif Display", serif;
}

.about-hero-title p {
  margin-top: 8px;
  font-size: clamp(16px, 2vw, 20px);
}

section {
  padding: 90px 10%;
  text-align: center;
}

.text-block {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
}

.text-block p + p {
  margin-top: 20px;
}

.text-block a {
  color: var(--sage);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.owner {
  background: var(--cream);
}

.owner-grid {
  display: grid;
  width: min(100%, 760px);
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.card {
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-bottom: 10px;
  font-family: "DM Serif Display", serif;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery picture {
  display: block;
  width: 100%;
}

@media (hover: hover) {
  .gallery img:hover {
    transform: scale(1.03);
  }
}

@media (max-width: 800px) {
  .hero {
    min-height: 280px;
    background:
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.42)),
      url("/assets/images/about-hero-960.jpg") center 10% / cover no-repeat;
    background:
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.42)),
      image-set(
        url("/assets/images/about-hero-960.avif") type("image/avif"),
        url("/assets/images/about-hero-960.webp") type("image/webp"),
        url("/assets/images/about-hero-960.jpg") type("image/jpeg")
      ) center 10% / cover no-repeat;
  }

  section {
    padding: 70px 8%;
  }
}
