/* ABOUT PAGE */
.ph-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-hero {
  position: relative;
  padding: 5rem 2.5rem;
  min-height: calc(100vh - 80px);
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* IMAGE COLUMN */
.about-image-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.photo-frame {
  position: relative;
}

.photo-frame img {
  width: 100%;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
  filter: grayscale(10%) contrast(1.05);
  transition: filter 0.4s ease;
}

.photo-frame:hover img {
  filter: grayscale(0%) contrast(1.1);
}

.photo-deco-1 {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background: var(--pink);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  z-index: -1;
  opacity: 0.7;
}

.photo-deco-2 {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 60px;
  height: 60px;
  background: var(--lime);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  z-index: -1;
  opacity: 0.7;
}

.about-social {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.soc-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.2rem;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.3s ease;
}

.soc-btn span {
  font-size: 1rem;
  color: var(--pink);
}

.soc-btn:hover {
  background: var(--pink);
  color: var(--dark);
  border-color: var(--pink);
}

.soc-btn:hover span { color: var(--dark); }

/* TEXT COLUMN */
.about-title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 2rem;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.about-bio p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,245,245,0.75);
}

/* SKILLS */
.skills-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.skill-item {}

.skill-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.skill-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in.visible .skill-fill {
  /* width is set inline */
}

/* VALUES SECTION */
.values-section {
  padding: 5rem 2.5rem;
  background: var(--dark2);
  border-top: 1px solid rgba(185,239,37,0.15);
}

.values-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-6px);
  border-color: rgba(249,81,162,0.3);
}

.val-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.value-item p {
  font-size: 0.85rem;
  color: rgba(245,245,245,0.6);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-container { grid-template-columns: 300px 1fr; gap: 3rem; }
  .values-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-hero { padding: 3rem 1.5rem; }
  .about-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .photo-frame img { max-width: 300px; margin: 0 auto; }
  .values-section { padding: 3rem 1.5rem; }
  .values-inner { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
}

@media (max-width: 480px) {
  .values-inner { grid-template-columns: 1fr; }
  .about-social { flex-direction: row; flex-wrap: wrap; }
  .soc-btn { flex: 1; min-width: 130px; }
}
