/* ————— About Section ————— */

/* Decorative corners card */
.about-orn-corner {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}
.about-orn-corner::before,
.about-orn-corner::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.about-orn-corner::before {
  left: -11px;
  top: -11px;
}
.about-orn-corner::after {
  right: -11px;
  bottom: -11px;
}

/* ————— About Reveal on Scroll ————— */
.about-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.about-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ————— About Section Title ————— */
.about-section-title {
  font-family: "Gloock", serif;
  letter-spacing: 0.3px;
  position: relative;
  margin-bottom: 1.25rem;
}
.about-section-title .about-orn {
  width: 90px;
  height: 8px;
  display: block;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ————— About Shadow Soft ————— */
.about-shadow-soft {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}
