/* Editorial shadow — soft ambient glow, not a dark smudge */
.editorial-shadow {
  box-shadow: 0 10px 40px rgba(27, 28, 25, 0.05);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Image cards hover */
.card-image {
  overflow: hidden;
}
.card-image img {
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.card-image:hover img {
  transform: scale(1.05);
  opacity: 1;
}

/* Plaque-style labels */
.label-plaque {
  font-family: 'Manrope', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Link underline on hover */
.link-subtle {
  text-decoration: none;
  text-underline-offset: 8px;
  transition: text-decoration-color 0.3s ease;
}
.link-subtle:hover {
  text-decoration: underline;
  text-decoration-color: currentColor;
}
