/* ===========================
   ABOUT PAGE
   =========================== */

.about-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 120px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

/* Left column */
.about-intro {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 48px;
}

.about-intro em {
  font-style: italic;
  color: var(--accent);
}

.about-body {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 48px;
}

.about-body p + p { margin-top: 20px; }

/* Skills */
.skills-section { margin-bottom: 48px; }

.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.skills-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.skill-category {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  min-width: 100px;
  padding-top: 6px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 4px 12px;
  font-size: 11px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.skill-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hobbies */
.hobbies-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hobby-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
}

.hobby-icon {
  font-size: 16px;
}

/* CTA row */
.about-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* Right column - sidebar */
.about-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Education card */
.edu-card {
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.edu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
}

.edu-card:hover { border-color: var(--border-h); }

.edu-year {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 10px;
}

.edu-degree {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}

.edu-school {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.edu-location {
  font-size: 11px;
  color: var(--text-dim);
}

/* Interests card */
.interests-card {
  border: 1px solid var(--border);
  padding: 28px;
}

.interests-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.interests-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.interests-list li::before {
  content: '→';
  color: var(--accent);
  font-size: 12px;
}

/* Download CV button special style */
.btn-download {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-download:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.3);
}

.btn-download svg {
  width: 14px;
  height: 14px;
}

/* Staggered delays */
.about-intro { transition-delay: 0.1s; }
.about-body { transition-delay: 0.2s; }
.skills-section { transition-delay: 0.3s; }
.about-cta { transition-delay: 0.4s; }
.edu-card:nth-child(1) { transition-delay: 0.2s; }
.edu-card:nth-child(2) { transition-delay: 0.3s; }
.interests-card { transition-delay: 0.4s; }

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-sidebar { position: static; }
}

@media (max-width: 640px) {
  .about-layout { padding: 0 24px 80px; }
  .skill-row { flex-direction: column; gap: 8px; }
  .skill-category { min-width: unset; }
}
