/* ─── ABOUT ──────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.about__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__img::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 2px solid var(--gold);
  border-radius: var(--r-lg);
  pointer-events: none;
}

.about__content { }

.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
}
.about__badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--sage);
  background: rgba(42,122,94,.07);
  border: 1px solid rgba(42,122,94,.18);
  padding: .35rem .8rem;
  border-radius: 99px;
}

.about__text {
  font-size: .97rem;
  color: #444;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.about__text strong { font-weight: 700; color: var(--ink); }
