/* ============================================
   About Page Styles
   ============================================ */

/* ---------- About Hero ---------- */
.about-hero {
  padding: var(--sp-3xl) 0;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.about-hero__photo-wrap {
  position: relative;
}

.about-hero__photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-hero__photo {
  aspect-ratio: 3 / 4;
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  letter-spacing: 0.12em;
  opacity: 0.5;
}

.about-hero__content h1 {
  margin-bottom: var(--sp-xl);
}

.about-hero__content h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.about-hero__bio p {
  color: var(--text-graphite);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: var(--sp-lg);
}

.about-hero__tags {
  margin-top: var(--sp-xl);
}

/* ---------- Philosophy Quote ---------- */
.philosophy {
  background: var(--navy);
  padding: var(--sp-3xl) 0;
  text-align: center;
}

.philosophy blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto var(--sp-lg);
  line-height: 1.5;
}

.philosophy cite {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

/* ---------- Experience Timeline ---------- */
.timeline-section {
  padding: var(--sp-3xl) 0;
}

.timeline-section__header {
  max-width: 500px;
  margin-bottom: var(--sp-2xl);
}

.timeline-section__header h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: var(--border-cream);
}

.timeline__entry {
  position: relative;
  margin-bottom: var(--sp-2xl);
}

.timeline__entry:last-child {
  margin-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border-cream);
  background: var(--bg-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline__dot--current {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

.timeline__dot--current::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg-white);
}

.timeline__date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--sp-xs);
}

.timeline__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-midnight);
  margin-bottom: 2px;
}

.timeline__company {
  font-size: 0.875rem;
  color: var(--text-stone);
  margin-bottom: var(--sp-md);
}

.timeline__desc {
  font-size: 0.9rem;
  color: var(--text-graphite);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
  max-width: 600px;
}

.timeline__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.timeline__tags .tag {
  background: var(--bg-gold-subtle);
  border-color: transparent;
  color: var(--gold-dark);
  font-size: 0.6rem;
}

/* ---------- Skills ---------- */
.skills-section {
  background: var(--bg-ivory-warm);
  padding: var(--sp-3xl) 0;
}

.skills__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.skills__intro h2 {
  margin-bottom: var(--sp-md);
}

.skills__intro p {
  color: var(--text-stone);
  font-size: 1rem;
  line-height: 1.7;
}

.skill-group {
  margin-bottom: var(--sp-xl);
}

.skill-group:last-child {
  margin-bottom: 0;
}

.skill-group__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: var(--sp-sm);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--border-cream);
}

.skill-group__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.skill-group__item {
  font-size: 0.85rem;
  color: var(--text-graphite);
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
}

.skill-group__item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.skill-group__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ---------- About CTA ---------- */
.about-cta {
  text-align: center;
  padding: var(--sp-3xl) 0;
}

.about-cta h2 {
  margin-bottom: var(--sp-md);
}

.about-cta p {
  color: var(--text-stone);
  max-width: 520px;
  margin: 0 auto var(--sp-xl);
  font-size: 1.05rem;
}

.about-cta .btn-group {
  justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .about-hero__photo-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .skills__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .skill-group__list {
    grid-template-columns: 1fr;
  }
}
