main {
  background-color: var(--color-bg);
}
.hero {
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(250, 248, 245, 0.08), transparent 55%), radial-gradient(circle at 100% 100%, rgba(199, 145, 75, 0.12), transparent 55%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.card h3 {
  margin-bottom: var(--space-2);
}
.text-sm {
  font-size: var(--text-sm);
}
.section--accent {
  position: relative;
}
.section--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(250, 248, 245, 0.7), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}
.section--accent > .container {
  position: relative;
  z-index: 1;
}
.gallery-img img {
  border-radius: var(--radius-lg);
}
@media (max-width: 767px) {
  .hero {
    padding-top: var(--space-12);
  }
}
