/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — PAGE-SPECIFIC STYLES
   Supplements style.css with styles unique to about.html
═══════════════════════════════════════════════════════════════ */

/* Force nav to always show the scrolled (white) state on inner pages */
.about-page .nav-header {
  background: var(--color-white) !important;
  box-shadow: 0 2px 20px rgba(28, 53, 78, 0.08);
}

.about-page .nav-link,
.about-page .hamburger .bar {
  color: var(--color-navy) !important;
  background: var(--color-navy);
}

.about-page .nav-link {
  background: transparent;
}


/* ═══════════════════════════════════════════════════════════════
   PAGE HERO BANNER
═══════════════════════════════════════════════════════════════ */

.page-hero {
  position: relative;
  background: var(--color-navy);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  text-align: center;
}

/* Geometric background pattern */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(238,133,36,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(238,133,36,0.07) 0%, transparent 45%);
  pointer-events: none;
}

/* Grid line pattern overlay */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,53,78,0.6) 0%, rgba(28,53,78,0.2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.about-page-eyebrow {
  color: var(--color-primary) !important;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.about-page-eyebrow .eyebrow-line {
  background: var(--color-primary);
}

.page-hero-heading {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.page-hero-accent {
  color: var(--color-primary);
}

.page-hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb span[aria-current] {
  color: var(--color-primary);
}


/* ═══════════════════════════════════════════════════════════════
   COMPANY OVERVIEW SECTION
═══════════════════════════════════════════════════════════════ */

.company-overview {
  background: var(--color-white);
  padding: 7rem 0;
  overflow: hidden;
}

.overview-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}

.overview-heading {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.overview-accent {
  color: var(--color-primary);
}

.overview-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.overview-body p {
  font-family: var(--font-body);
  font-size: 0.975rem;
  line-height: 1.8;
  color: #4A5568;
}

/* Callout cards */
.overview-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

.overview-card {
  background: var(--color-off-white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(28, 53, 78, 0.05);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(28,53,78,0.08);
}

.overview-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(238,133,36,0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.overview-card-icon svg {
  width: 24px;
  height: 24px;
}

.overview-card h3 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.6rem;
}

.overview-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #718096;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   LEADERSHIP SECTION
═══════════════════════════════════════════════════════════════ */

.leadership {
  background: var(--color-off-white);
  padding: 7rem 0;
}

.leadership-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.leadership-header {
  margin-bottom: 4rem;
}

.leadership-heading {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Leader Card */
.leader-card {
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(28,53,78,0.07);
  border: 1px solid rgba(28,53,78,0.04);
  display: grid;
  grid-template-columns: 360px 1fr;
  overflow: hidden;
}

/* ─── Portrait column ────────────────────────── */
.leader-portrait-wrap {
  background: var(--color-navy);
  padding: 3rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Subtle pattern on portrait column */
.leader-portrait-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.leader-portrait-frame {
  position: relative;
  width: 220px;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  outline: 3px solid rgba(238,133,36,0.4);
  outline-offset: 6px;
  z-index: 1;
}

.leader-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--ease-smooth);
}

.leader-portrait-frame:hover .leader-portrait-img {
  transform: scale(1.05);
}

.leader-portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28,53,78,0.4) 100%);
}

.leader-nameplate {
  z-index: 1;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.leader-name {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.leader-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.leader-credentials-badge {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
}

.badge-sep {
  color: var(--color-primary);
}

/* ─── Bio column ─────────────────────────────── */
.leader-bio {
  padding: 3rem 3rem 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.leader-bio-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.leader-bio-body p {
  font-family: var(--font-body);
  font-size: 0.975rem;
  line-height: 1.8;
  color: #4A5568;
}

/* Experience Timeline */
.leader-experience {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E8EDF2;
}

.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.exp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 0 3px rgba(238,133,36,0.15);
}

.exp-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.exp-item strong {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
}

.exp-item span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #718096;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — ABOUT PAGE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .overview-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }

  .leader-portrait-wrap {
    padding: 3rem 2rem;
  }

  .leader-portrait-frame {
    width: 180px;
    height: 210px;
  }

  .leader-bio {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 7rem 1.5rem 3.5rem;
    min-height: 360px;
  }

  .company-overview,
  .leadership {
    padding: 5rem 0;
  }

  .overview-container,
  .leadership-container {
    padding: 0 1.25rem;
  }

  .leader-portrait-frame {
    width: 160px;
    height: 190px;
  }

  .leader-bio {
    padding: 2rem 1.25rem;
  }

  .leader-bio-body p {
    font-size: 0.9rem;
  }
}
