/* ─────────────────────────────────────────────
   About Page V2 — Personal Solo Designer
   ───────────────────────────────────────────── */

/* ─── INTRO SPLIT ─── */
.abt-intro {
  padding: 80px 0 80px;
}
.abt-intro-inner {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 60px;
  align-items: center;
}
.abt-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  max-width: 380px;
}
.abt-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.abt-photo-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  text-align: left;
}
.abt-photo-name strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.abt-photo-name span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.abt-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}
.abt-bio {
  padding: 20px 0;
}
.abt-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  animation: tagPulse 2s ease-in-out infinite;
}
.abt-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0F9D58;
  animation: dotBlink 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(15,157,88,0.2);
}
@keyframes tagPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(15,157,88,0.2); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(15,157,88,0.1); }
}
.abt-bio h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.abt-bio h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}
.abt-lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.abt-bio p {
  color: var(--muted);
  line-height: 1.7;
}
.abt-quick-facts {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.abt-fact strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.abt-fact span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ─── STORY ─── */
.abt-story {
  padding: 80px 0;
  background: var(--surface);
}
.abt-story-content {
  max-width: 680px;
  margin: 0 auto;
}
.abt-story-content h2 {
  margin-bottom: 24px;
}
.abt-story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ─── WHY ME ─── */
.abt-why {
  padding: 100px 0;
}
.abt-why h2 {
  margin-bottom: 48px;
}
.abt-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.abt-why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.3s ease;
  position: relative;
}
.abt-why-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.abt-why-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.abt-why-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.abt-why-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ─── TOOLS ─── */
.abt-tools {
  padding: 80px 0 100px;
  background: var(--surface);
}
.abt-tools h2 {
  margin-bottom: 12px;
}
.abt-tools-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.abt-tool {
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.abt-tool svg, .abt-tool i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  font-size: 18px;
}
.abt-tool:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .abt-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .abt-photo {
    max-width: 360px;
    margin: 0 auto;
  }
  .abt-why-grid {
    grid-template-columns: 1fr;
  }
  .abt-quick-facts {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .abt-intro { padding: 80px 0 60px; }
  .abt-quick-facts { flex-wrap: wrap; gap: 20px; }
  .abt-fact { flex: 1 1 40%; }
  .abt-why { padding: 60px 0; }
  .abt-tools { padding: 60px 0 80px; }
}
