/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  min-height: 85vh;
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  min-height: 600px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-quote {
  position: absolute;
  bottom: 3rem;
  right: -2rem;
  background: var(--burgundy);
  color: var(--white);
  padding: 1.5rem 2rem;
  max-width: 280px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  font-style: normal;
  line-height: 1.6;
  z-index: 2;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 7vw 6rem var(--section-pad-x);
}

.about-text {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}

/* Credentials */
.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(107, 11, 30, 0.14);
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}

.cred-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════
   CLINIC GALLERY
══════════════════════════════ */
.clinic {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--cream-dark);
}

.clinic-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.clinic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.clinic-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-mid);
}

.clinic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.clinic-img:hover img {
  transform: scale(1.04);
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials {
  background: var(--burgundy);
  padding: var(--section-pad-y) var(--section-pad-x);
}

.test-header {
  text-align: center;
  margin-bottom: 4rem;
}

.test-header .section-title {
  color: var(--white);
}

.test-header .section-title em {
  color: var(--gold);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.test-card {
  background: rgba(255,255,255,0.04);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}

.test-card:hover {
  background: rgba(255,255,255,0.08);
}

.test-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 1.2rem;
}

.test-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.5rem;
}

.test-author {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonials .results-cta .results-ig-link {
  color: rgba(255, 255, 255, 0.82);
}

.testimonials .results-cta .results-ig-link strong {
  color: var(--gold);
}

.testimonials .results-cta .results-ig-link::after {
  color: var(--gold);
}
