/* SM Finishes — About Us intro */
.smf-about-intro {
  --smf-gold: #b1913c;
  --smf-ink: #1a1a1a;
  --smf-muted: #555;
  position: relative;
  z-index: 1;
}

.smf-about-intro .rs-section-title {
  font-weight: 800;
}

.smf-about-intro__media {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(15, 21, 34, 0.12);
}

.smf-about-intro__media img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.smf-about-intro__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 12px;
  background: rgba(17, 17, 17, 0.88);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.smf-about-intro__badge strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  padding: 0 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b1913c 0%, #c4a55a 100%);
  color: #111;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.smf-about-intro__badge span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
}

.smf-about-intro__copy .rs-about-descrip {
  margin-bottom: 14px;
  color: var(--smf-muted);
  line-height: 1.7;
}

.smf-about-intro__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 22px;
  padding: 0;
  list-style: none;
}

.smf-about-intro__pills li {
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(177, 145, 60, 0.12);
  color: #333;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.smf-about-intro__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 22px;
}

.smf-about-intro__stat {
  padding: 16px 12px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 21, 34, 0.04);
}

.smf-about-intro__stat strong {
  display: block;
  color: var(--smf-gold);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

.smf-about-intro__stat span {
  display: block;
  color: var(--smf-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.smf-about-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.smf-about-intro__actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(177, 145, 60, 0.35);
  color: var(--smf-gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.smf-about-intro__actions a:hover,
.smf-about-intro__actions a:focus-visible {
  background: var(--smf-gold);
  border-color: var(--smf-gold);
  color: #fff;
}

.smf-geo-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 40px 0 0;
  padding: 0;
  background: none;
  border: none;
}

.smf-geo-facts > div {
  margin: 0;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 21, 34, 0.04);
  border-top: 3px solid var(--smf-gold);
}

.smf-geo-facts dt {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smf-gold);
}

.smf-geo-facts dd {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.55;
}

.smf-geo-facts a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.smf-geo-facts a:hover,
.smf-geo-facts a:focus-visible {
  color: var(--smf-gold);
}

@media (max-width: 1199px) {
  .smf-about-intro__stats,
  .smf-geo-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smf-about-intro__media img {
    height: 440px;
  }
}

@media (max-width: 991px) {
  .smf-about-intro__media {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .smf-about-intro__media img {
    height: 360px;
  }

  .smf-about-intro__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smf-geo-facts {
    grid-template-columns: 1fr;
  }

  .smf-about-intro__badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
