﻿/* ── About ── */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 480px;
}

.about-img-main {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-sub {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
  z-index: 2;
}

.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-watermark {
  position: absolute;
  top: 50%;
  inset-inline-start: -20px;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(var(--primary-rgb), 0.05);
  letter-spacing: 8px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: 0.3s;
}

.stat-box:hover {
  border-color: var(--maroon);
  box-shadow: var(--shadow);
}

.stat-box .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}

.stat-box .lbl {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ── Features List ── */
.features-section { background: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: 0.3s;
}

.feature-item:hover {
  border-color: var(--maroon);
  box-shadow: var(--shadow);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── Skills ── */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.skill-tag {
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--maroon);
  transition: 0.3s var(--ease);
}

.skill-tag:hover {
  background: var(--maroon);
  color: white;
  border-color: var(--maroon);
  transform: translateY(-2px);
}

.skills-bars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  margin-top: 48px;
}

.skill-bar-item { margin-bottom: 22px; }

.skill-bar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

.skill-bar-header span:last-child {
  color: var(--maroon);
  font-family: var(--font-display);
}

.skill-bar-track {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(to inline-end, var(--maroon), var(--gold));
  border-radius: 4px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-inline-start: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--maroon), var(--gold));
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
  padding-inline-start: 28px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  inset-inline-start: -5px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--maroon);
  border: 2px solid var(--gold-light);
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}

.timeline-year {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.timeline-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── CTA Banner ── */
.cta-section {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: 'WP';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: white;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-size: 1.05rem;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
