/* ─────────────────────────────────────────
   About
   ───────────────────────────────────────── */

.about {
  background: var(--white);
  padding-block: clamp(64px, 10vw, 120px);
  padding-inline: clamp(24px, 6vw, 80px);
}

.about__container {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0 80px;
  align-items: start;
}

/* ── Left ── */
.about__heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--shadow-dark);
  margin-bottom: clamp(28px, 4vw, 44px);
}

/* Two photos side by side */
.about__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.about__photo-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: var(--platinum-1);
}

/* Second photo sits slightly lower — matches screenshot */
.about__photo-wrap--offset {
  margin-top: 24px;
}

.about__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.about__photo-wrap:hover .about__photo {
  transform: scale(1.03);
}

/* ── Right ── */
.about__right {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.about__body {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.55;
  color: var(--shadow-dark);
}

/* Pill button — dark, rounded, matches screenshot */
.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--shadow-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.about__btn:hover {
  opacity: 0.8;
  transform: translateX(2px);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 48px 0;
  }

  .about__photos {
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .about__photo-wrap--offset {
    margin-top: 16px;
  }
}
