/* ══════════════════════════════════════════════════════════════
   SECTION: ABOUT / PROFILE
   ══════════════════════════════════════════════════════════════ */

/* ── Grid layout ────────────────────────────────────────────── */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

/* ── Text column ────────────────────────────────────────────── */

.about__text .hl {
  color: #C8C8C8;
  font-weight: 600;
}

.about__text h2 {
  margin-top: var(--space-4);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 40px);
}

.about__text .body-lg {
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
}

/* ── Values tiles ───────────────────────────────────────────── */

.about__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
}

/* ── Photo real ─────────────────────────────────────────────── */

.about__photo-wrap {
  position: relative;
  align-self: center;
}

.about__photo-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.about__photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
  transition: transform var(--transition-slow);
  image-rendering: high-quality;
}

.about__photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 35%,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}

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

/* Gold corner top-right */
.about__photo-wrap::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  pointer-events: none;
  z-index: 3;
}

/* Gold corner bottom-left */
.about__photo-corner {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  pointer-events: none;
  z-index: 3;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__photo-wrap {
    order: -1;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .about__values {
    grid-template-columns: 1fr;
  }
}
