.hero-photo-card {
  min-height: 560px;
  height: 560px;
  display: block;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--sage-2);
}

.hero-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
  transition: transform 1.1s cubic-bezier(0.2, 0.72, 0.25, 1);
}

.hero-photo-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 34px;
  background: linear-gradient(
    180deg,
    transparent 46%,
    rgba(42, 39, 34, 0.12) 64%,
    rgba(42, 39, 34, 0.68) 100%
  );
}

.hero-photo-overlay .hero-card-label {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 14px rgba(42, 39, 34, 0.28);
}

.hero-photo-overlay .brand-values {
  justify-content: flex-start;
  margin-top: 15px;
}

.hero-photo-overlay .brand-values span {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 7px 18px rgba(42, 39, 34, 0.09);
  backdrop-filter: blur(8px);
}

.hero-photo-card:hover .hero-photo {
  transform: scale(1.025);
}

.about-art {
  isolation: isolate;
  background: var(--sage-2);
}

.about-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 37%;
  transition: transform 1.1s cubic-bezier(0.2, 0.72, 0.25, 1);
}

.about-photo-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 58%,
    rgba(42, 39, 34, 0.08) 72%,
    rgba(42, 39, 34, 0.34) 100%
  );
  pointer-events: none;
}

.about-logo-card {
  position: absolute;
  z-index: 3;
  left: 22px;
  bottom: 22px;
  width: 184px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 30px rgba(42, 39, 34, 0.13);
  backdrop-filter: blur(12px);
}

.about-logo-card .about-logo {
  width: 100%;
  filter: none;
}

.about-badge {
  top: 22px;
  right: 22px;
  bottom: auto;
  width: 118px;
  filter: drop-shadow(0 12px 20px rgba(42, 39, 34, 0.13));
}

.about-art:hover .about-photo {
  transform: scale(1.025);
}

@media (max-width: 1050px) {
  .hero-photo-card {
    min-height: 500px;
    height: 500px;
  }
}

@media (max-width: 840px) {
  .hero-photo-card {
    min-height: 520px;
    height: 520px;
  }
}

@media (max-width: 560px) {
  .hero-photo-card {
    min-height: 440px;
    height: 440px;
  }

  .hero-photo-overlay {
    padding: 26px;
  }

  .about-logo-card {
    left: 16px;
    bottom: 16px;
    width: 150px;
    padding: 11px 13px;
    border-radius: 15px;
  }

  .about-badge {
    top: 16px;
    right: 16px;
    width: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo,
  .about-photo {
    transition: none;
  }

  .hero-photo-card:hover .hero-photo,
  .about-art:hover .about-photo {
    transform: none;
  }
}
