/* ============================================
   VANDANISM ART — About Page Styles
   css/about.css
   ============================================ */

#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- IMAGE --- */
.about-image-wrap { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 60px 4px 60px 4px;
  overflow: hidden;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
}

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

.about-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #D4A97A 0%, #C17A50 50%, #8B5E3C 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(253,250,244,0.4);
  font-family: 'Caveat', cursive;
  font-size: 20px;
}

.about-badge {
  position: absolute;
  bottom: 30px; right: -20px;
  background: var(--coral);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(217,97,76,0.3);
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 600;
  display: block;
}
.about-badge-label { font-size: 11px; opacity: 0.85; }

/* --- CONTENT --- */
.about-name {
  font-family: 'Caveat', cursive;
  font-size: 20px; color: var(--wood);
  margin-top: 20px; margin-bottom: 8px;
}

.about-bio {
  font-size: 15px; line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* --- SKILL TAGS --- */
.about-skills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.skill-tag {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  color: var(--wood);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
}

/* --- VENDORS --- */
.about-vendors {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-dark);
}
.about-vendors-label {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 14px;
}
.vendor-logos {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.vendor-pill {
  background: var(--cream);
  border: 1px solid var(--wood-pale);
  color: var(--ink-soft);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px; font-weight: 500;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 0; }
}