/* ABOUT */
#about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 72px; align-items: stretch; }
.about-visual { position: relative; min-height: 600px; }
.about-photo {
  position: relative; height: 560px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  background: linear-gradient(135deg, #131313, #1a1a1a);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  border-radius: var(--radius); display: block; transition: transform 0.8s ease;
}
.about-photo:hover img { transform: scale(1.03); }
.about-glass-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 18px 36px;
}
.about-glass-label span {
  font-family: var(--font-display); font-weight: 900; font-size: 56px;
  letter-spacing: -0.04em; color: var(--text);
}
.about-content { display: flex; flex-direction: column; gap: 22px; padding-top: 8px; }
.about-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 5.6vw, 76px); letter-spacing: -0.04em;
  line-height: 1; margin-top: 8px;
}
.about-bio { color: var(--text2); font-size: 16px; line-height: 1.7; max-width: 540px; }
.about-bio strong { color: var(--text); font-weight: 500; }
.about-skills {
  margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; max-width: 540px;
}
.skill-item {
  padding: 12px 16px; border-radius: 12px; background: var(--surface);
  border: 1px solid var(--border); font-family: var(--font-mono); font-size: 12px;
  display: flex; align-items: center; gap: 10px; color: var(--text);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.skill-item:hover { border-color: var(--orange); background: var(--orange-soft); }
.skill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.tools-section { margin-top: 18px; }
.tools-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tool-badge {
  font-family: var(--font-mono); font-size: 11px; padding: 7px 13px;
  border-radius: 8px; border: 1px solid var(--border2);
  background: rgba(255,255,255,0.025); color: var(--text);
  transition: all .3s var(--ease);
}
.tool-badge:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { min-height: auto; }
  .about-photo { height: 440px; }
}
@media (max-width: 767px) { .about-photo { height: 380px; } }
@media (max-width: 600px) {
  .about-skills { grid-template-columns: 1fr; }
  .about-glass-label span { font-size: 44px; }
  .about-glass-label { padding: 22px 36px; }
  .about-photo { height: 320px; }
  .about-bio { font-size: 14.5px; }
}
