/* =============================================
   ABOUT PAGE — about.css
   ============================================= */

/* ---- Shared label (reused from home pattern) ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span { color: var(--color-gold); }

/* ==============================================
   SECTION 1 — PAGE HERO
   ============================================= */
.about-hero {
  background-color: var(--color-navy);
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
}

.about-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.about-hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  max-width: 700px;
}

.about-hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.25rem;
  max-width: 600px;
  line-height: 1.6;
  font-weight: 400;
}

/* ==============================================
   SECTION 2 — INTRODUCTION SPLIT
   ============================================= */
.about-intro {
  padding: 80px 24px;
  background: #fff;
}

.about-intro__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 64px;
  align-items: start;
}

/* Left */
.about-intro__photo-wrap {
  position: sticky;
  top: 88px;
}

.about__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  display: block;
  margin-bottom: 20px;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-subtext);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.cred-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cred-pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1.5px solid var(--color-gold);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
}

/* Right */
.about-intro__content h2 {
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-intro__content p {
  font-size: 1.0625rem;
  color: var(--color-subtext);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-intro__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ==============================================
   SECTION 3 — TIMELINE
   ============================================= */
.timeline-section {
  background-color: var(--color-surface);
  padding: 80px 24px;
}

.timeline-section__header {
  text-align: center;
  margin-bottom: 16px;
}

.timeline-section__sub {
  text-align: center;
  color: var(--color-subtext);
  font-style: italic;
  margin-bottom: 64px;
}

/* Container */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Center vertical gold line */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-gold);
  transform: translateX(-50%);
}

/* Each row */
.timeline__item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 36px);
  margin-bottom: 48px;
  position: relative;
}

.timeline__item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 36px);
}

/* Year badge on the center line */
.timeline__badge {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  z-index: 1;
  padding: 4px;
}

/* Card */
.timeline__card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px rgba(30,58,95,0.08);
  padding: 24px 28px;
  width: 100%;
  max-width: 380px;
}

.timeline__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.timeline__tag--education   { background: #e8f4fd; color: #1d6fa4; }
.timeline__tag--career      { background: #eaf6f0; color: #1a7a4a; }
.timeline__tag--achievement { background: #fff8e6; color: #b07f20; }
.timeline__tag--personal    { background: #fdf0f0; color: #c0392b; }
.timeline__tag--business    { background: #f0eafa; color: #6c3483; }

.timeline__card h4 {
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.timeline__card p {
  font-size: 0.875rem;
  color: var(--color-subtext);
  line-height: 1.65;
  margin: 0;
}

.timeline__bullets {
  margin: 10px 0 0 0;
  padding-left: 18px;
  list-style: disc;
}

.timeline__bullets li {
  font-size: 0.825rem;
  color: var(--color-subtext);
  line-height: 1.6;
  margin-bottom: 4px;
}
.timeline__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold);
  transition: color var(--transition);
}
.timeline__link:hover { color: var(--color-navy); }

/* ==============================================
   SECTION 4 — BY THE NUMBERS
   ============================================= */
.numbers-section {
  background-color: var(--color-navy);
  padding: 72px 24px;
}

.numbers-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.number-block__value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.number-block__divider {
  width: 36px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 0 auto 12px;
}

.number-block__label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}

/* ==============================================
   SECTION 5 — WHAT I BELIEVE
   ============================================= */
.beliefs-section {
  background-color: #fff;
  padding: 80px 24px;
}

.beliefs-section__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.beliefs-section h2 { margin-bottom: 48px; }

.beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.belief-card {
  background-color: var(--color-surface);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 32px 28px;
}

.belief-card h4 {
  font-size: 1.0625rem;
  color: var(--color-navy);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.belief-card p {
  font-size: 0.9375rem;
  color: var(--color-subtext);
  line-height: 1.75;
  margin: 0;
}

/* ==============================================
   SECTION 6 — EDUCATION & CREDENTIALS
   ============================================= */
.education-section {
  background-color: var(--color-surface);
  padding: 80px 24px;
}

.education-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.edu-cards-grid {
  max-width: var(--max-width);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.edu-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(30,58,95,0.07);
  padding: 32px 24px;
  text-align: center;
}

.edu-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.edu-card h4 {
  font-size: 1.0625rem;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.edu-card__institution {
  font-size: 0.875rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.edu-card__year {
  font-size: 0.8125rem;
  color: var(--color-subtext);
  margin-bottom: 12px;
}

.edu-card__detail {
  font-size: 0.875rem;
  color: var(--color-subtext);
  line-height: 1.65;
  margin: 0;
}

.edu-card--wide {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 24px 28px;
}

.edu-card--wide .edu-card__icon { margin-bottom: 0; font-size: 1.75rem; flex-shrink: 0; }
.edu-card--wide h4 { margin-bottom: 4px; }

/* ==============================================
   SECTION 7 — BEYOND THE OFFICE
   ============================================= */
.beyond-section {
  background-color: #fff;
  padding: 80px 24px;
}

.beyond-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: center;
}

.beyond-section__content p {
  font-size: 1.0625rem;
  color: var(--color-subtext);
  line-height: 1.85;
  margin-bottom: 18px;
}

.beyond-section__link {
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 1rem;
  transition: color var(--transition);
}
.beyond-section__link:hover { color: var(--color-navy); }

.beyond-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--color-surface);
  border: 2px dashed var(--color-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-subtext);
  font-size: 0.875rem;
}

/* ==============================================
   SECTION 8 — MEDIA & RECOGNITION
   ============================================= */
.seen-in-section {
  background-color: var(--color-surface);
  padding: 48px 24px;
}
.seen-in__inner {
  text-align: center;
}
.seen-in__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 24px;
}
.seen-in__pill {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.03em;
}
.seen-in__link {
  font-weight: 600;
  color: var(--color-gold);
  font-size: 0.9375rem;
}
.seen-in__link:hover { color: var(--color-navy); }

/* ==============================================
   SECTION 9 — CLOSING CTA
   ============================================= */
.about-cta {
  background-color: var(--color-navy);
  padding: 80px 24px;
  text-align: center;
}

.about-cta__inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-cta h2 {
  color: #fff;
  margin-bottom: 16px;
}

.about-cta__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.about-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white-outline-lg {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-white-outline-lg:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* ==============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-intro__inner {
    grid-template-columns: 40% 60%;
    gap: 40px;
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .edu-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .about-hero { padding: 100px 24px 48px; min-height: auto; }
  .about-hero h1 { font-size: 2rem; }
  .about-hero__sub { font-size: 1rem; }

  /* Intro */
  .about-intro__inner { grid-template-columns: 1fr; gap: 36px; }
  .about-intro__photo-wrap { position: static; }
  .about-photo-placeholder { aspect-ratio: 4/3; }

  /* Timeline — single column left-aligned */
  .timeline::before {
    left: 24px;
    transform: none;
  }
  .timeline__item,
  .timeline__item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 72px;
  }
  .timeline__badge {
    left: 24px;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    font-size: 0.6rem;
  }
  .timeline__card { max-width: 100%; }

  /* Numbers */
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .number-block__value { font-size: 2.5rem; }

  /* Beliefs */
  .beliefs-grid { grid-template-columns: 1fr; }

  /* Education */
  .edu-cards-grid { grid-template-columns: 1fr; }

  /* Beyond */
  .beyond-section__inner { grid-template-columns: 1fr; gap: 36px; }

  /* CTA */
  .about-cta__buttons { flex-direction: column; align-items: center; }
  .about-cta__buttons .btn-secondary,
  .btn-white-outline-lg { width: 100%; max-width: 320px; text-align: center; }
}

@media (max-width: 480px) {
  .number-block__value { font-size: 2.25rem; }
  .about-intro__buttons { flex-direction: column; }
  .about-intro__buttons .btn-secondary,
  .about-intro__buttons .btn-outline { width: 100%; text-align: center; }
}
