/* ── About ──────────────────────────────────────────────── */
#about { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-frame {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--red);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.4;
}

.about-placeholder {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 1;
  border-radius: 12px;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}

.about-img-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--surface) 25%, var(--border) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: 12px;
}

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.about-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  position: relative;
}

.about-placeholder img.loaded {
  opacity: 1;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  margin-top: 1.75rem;
}

.detail-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.detail-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.detail-value a { font-weight: 500; }

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-wrap {
    display: none;
  }
  .about-details {
    grid-template-columns: 1fr;
  }
}
