/* ---------------------------------------------------------------------
 * About Us page (page 11) — the two sections restored from the old site:
 * the three visual category cards (Wedding / Corporate / Event) and the
 * stats band (100/600/500/800). Styling follows the site's established
 * charcoal/gold language (see landing-pages.css stats + index cards).
 * ------------------------------------------------------------------- */

.rc-about-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 28px 0 8px;
}
.rc-about-cats .rc-ac-card {
  display: block;
  background: #1b1815;
  border: 1px solid #2f2a23;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .3s ease, transform .3s ease;
}
.rc-about-cats .rc-ac-card:hover {
  border-color: #a8813f;
  transform: translateY(-3px);
}
.rc-about-cats .rc-ac-photo {
  position: relative;
  display: block;
}
.rc-about-cats .rc-ac-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.rc-about-cats .rc-ac-card:hover .rc-ac-photo img {
  transform: scale(1.04);
}
.rc-about-cats .rc-ac-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 18px 12px;
  background: linear-gradient(180deg, rgba(27,24,21,0) 0%, rgba(27,24,21,.85) 100%);
  color: #e9dfc7;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}
.rc-about-cats .rc-ac-caption {
  display: block;
  padding: 14px 18px 18px;
  color: #e9dfc7;
  opacity: .8;
  font-size: .92rem;
  line-height: 1.55;
}
@media (max-width: 820px) {
  .rc-about-cats { grid-template-columns: 1fr; }
}

.rc-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: #1b1815;
  border: 1px solid #2f2a23;
  padding: 40px 24px;
  margin: 34px 0;
  text-align: center;
}
.rc-about-stats .rc-as-num {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #c79a52;
  line-height: 1.1;
}
.rc-about-stats .rc-as-label {
  display: block;
  margin-top: 8px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #e9dfc7;
  opacity: .75;
}
@media (max-width: 700px) {
  .rc-about-stats { grid-template-columns: repeat(2, 1fr); padding: 30px 16px; }
  .rc-about-stats .rc-as-num { font-size: 2rem; }
}
