/* ── ABOUT PAGE ── */

.about-intro { background: var(--white); }
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start;
}
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%; border-radius: 12px;
  object-fit: cover; aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.about-photo-card {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.about-photo-card strong {
  font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700;
}
.about-photo-card span { font-size: 0.78rem; color: var(--text-muted); }
.about-location { color: var(--green) !important; font-weight: 600; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content h2 span { color: var(--green); }
.about-content p {
  color: var(--text-muted); line-height: 1.85;
  margin-bottom: 1.1rem; font-size: 0.98rem;
}
.about-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

/* STATS */
.about-stats-section { background: var(--dark); padding: 4rem 0; }
.about-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid rgba(255,255,255,0.06);
}
.astat-big {
  text-align: center; padding: 3rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.astat-big:last-child { border-right: none; }
.astat-big-num {
  font-family: 'Syne', sans-serif; font-size: 3.5rem;
  font-weight: 800; color: var(--green-mid);
  display: block; line-height: 1; margin-bottom: 0.5rem;
}
.astat-big-num sup { font-size: 1.5rem; }
.astat-big-label {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  font-weight: 500; display: block;
}

/* SKILLS */
.what-i-do { background: var(--light); }
.section-head { margin-bottom: 3rem; }
.section-head h2 span { color: var(--green); }
.skills-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.skill-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.skill-item:hover {
  border-color: var(--green-line);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.skill-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.skill-item h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.skill-item p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; }

/* VALUES */
.values-section { background: var(--white); }
.values-inner { max-width: 780px; margin: 0 auto; }
.values-inner h2 { margin-bottom: 2.5rem; }
.values-inner h2 span { color: var(--green); }
.values-list { display: flex; flex-direction: column; gap: 0; }
.value-item {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800;
  color: var(--green); flex-shrink: 0; padding-top: 0.15rem;
  min-width: 32px;
}
.value-text h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.value-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* CTA */
.cta-about { background: var(--green); padding: 5rem 0; }
.cta-about-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-about-inner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-about-inner p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; }
.cta-about-inner .btn-primary {
  background: var(--white); color: var(--green); border-color: var(--white);
}
.cta-about-inner .btn-primary:hover {
  background: var(--dark); color: var(--white); border-color: var(--dark);
}

@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { max-width: 360px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .astat-big:nth-child(2) { border-right: none; }
  .astat-big:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.06); }
  .skills-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .astat-big { padding: 2rem 1rem; }
  .astat-big:nth-child(3) { border-right: none; }
  .skills-grid { grid-template-columns: 1fr; }
  .value-item { flex-direction: column; gap: 0.5rem; }
}
