/* ==========================================================================
   about.css — Page-specific styles for about.html
   www.aelabrak.com | v1.0 | 21 March 2026
   ========================================================================== */

/* Re-use section-eyebrow, section-headline, section-sub from home.css via tokens */

/* ==========================================================================
   ABOUT HERO
   ========================================================================== */

.about-hero {
  padding-top: calc(var(--nav-height-mobile) + 48px);
  padding-bottom: 80px;
}

@media (min-width: 1024px) {
  .about-hero {
    padding-top: calc(var(--nav-height-desktop) + 64px);
    padding-bottom: 100px;
  }
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-hero-inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
    align-items: center;
  }
}

/* Photo */
.about-hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-photo-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-bg-navy);
  box-shadow: 0 24px 56px rgba(13, 34, 64, 0.2);
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Credential badge */
.about-credential {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}

@media (min-width: 1024px) {
  .about-credential {
    right: -24px;
    bottom: 40px;
  }
}

.about-credential-icon {
  font-size: 1.5rem;
}

.about-credential-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-bg-navy);
  line-height: 1;
}

.about-credential-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Content */
.about-hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 12px 0 24px;
}

.about-headline-accent {
  color: var(--color-bg-navy);
}

.about-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0 0 20px;
  font-weight: 500;
}

.about-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0 0 32px;
}

.about-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   STATS
   ========================================================================== */

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .about-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  position: relative;
}

@media (min-width: 768px) {
  .about-stat + .about-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
  }
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* ==========================================================================
   APPROACH
   ========================================================================== */

.about-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .about-two-col {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
}

.about-col-left {
  position: sticky;
  top: calc(var(--nav-height-desktop) + 24px);
}

.about-col-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-approach-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-approach-block:hover {
  transform: translateX(6px);
  box-shadow: -4px 0 0 var(--color-bg-navy), 0 8px 24px rgba(13, 34, 64, 0.08);
}

.approach-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(13, 34, 64, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-approach-block h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 8px;
}

.about-approach-block p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

/* ==========================================================================
   STORY & TIMELINE
   ========================================================================== */

.about-story-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.about-story-body {
  margin: 32px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-story-body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Timeline */
.about-timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--color-border);
}

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

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -39px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-bg-navy);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(13, 34, 64, 0.15);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-bg-navy);
  letter-spacing: 0.04em;
}

.timeline-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ==========================================================================
   WHAT I'M WORKING ON
   ========================================================================== */

.about-working-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.about-working-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .about-working-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.working-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.working-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(13, 34, 64, 0.08);
}

.working-card-icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
  display: block;
}

.working-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 10px;
}

.working-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

/* Reuse .cta-section from home.css — no extra styles needed */
/* Reuse .section-eyebrow from home.css */
.section-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0 0 16px;
}

/* CTA section reuse — dark bg already covers this in tokens/components */
.cta-section {
  background: var(--color-bg-dark);
  padding: var(--section-padding-mobile) 0;
}

@media (min-width: 1024px) {
  .cta-section {
    padding: var(--section-padding-desktop) 0;
  }
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-avatar-wrap { margin-bottom: 28px; padding-top: var(--space-8, 48px); }

.cta-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.cta-inner p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin: 0 0 36px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.cta-micro {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
