/* ============================================================
   HASMAN — assets/css/pages/about.css  (v3 — alignment fixed)
   ============================================================ */


/* ──────────────────────────────────────────────────────────
   0. SECTION PADDING  (section-pad not defined globally)
   ────────────────────────────────────────────────────────── */
.section-pad {
  padding-block: clamp(4rem, 8vw, 6rem);
}


/* ──────────────────────────────────────────────────────────
   1. PAGE HERO — about variant
   ────────────────────────────────────────────────────────── */
.page-hero--about {
  /* Override base.css .page-hero defaults */
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-navy) 0%, #003a8c 60%, #001540 100%);
  /* main already adds 80px padding-top for the fixed navbar,
     so this section only needs design-intent spacing on top  */
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  min-height: 420px;
  display: flex;
  align-items: center;
  /* Reset the grid-line pattern from base .page-hero::before */
}
/* Suppress base.css grid-line overlay — about has its own hex-bg */
.page-hero--about::before { display: none; }

/* Hex-pattern decorative background */
.page-hero__hex-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,176,240,.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,176,240,.10) 0%, transparent 45%);
  pointer-events: none;
}

/* Override base.css text-align: center on .page-hero__inner */
.page-hero--about .page-hero__inner {
  position: relative;
  z-index: 1;
  text-align: left;
  width: 100%;
}

.page-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-4);
  display: block;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--sp-5);
}
.page-hero__title em {
  font-style: normal;
  color: var(--accent);
}

.page-hero__sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,.78);
  max-width: 600px;
  line-height: var(--leading-loose);
  margin-bottom: var(--sp-6);
}

/* Accent line at bottom of hero — full-width bar */
.page-hero--about .page-hero__accent-line {
  /* Override base.css animated 80px centered line */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #0078d4);
  border-radius: 0;
  margin: 0;
  transform: none;
  animation: none;
}

/* Stat chips — inside container, left-aligned */
.page-hero__stat-chips {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-top: var(--sp-8);
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(0,176,240,.18);
  border: 1px solid rgba(0,176,240,.35);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  backdrop-filter: blur(8px);
}

/* Breadcrumb — left-aligned in hero */
.page-hero--about .breadcrumb {
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: var(--sp-6);
}
.page-hero--about .breadcrumb ol {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--text-sm);
}
.page-hero--about .breadcrumb li {
  color: rgba(255,255,255,.55);
}
.page-hero--about .breadcrumb li + li::before {
  content: '/';
  margin-right: var(--sp-2);
  color: rgba(255,255,255,.3);
}
.page-hero--about .breadcrumb a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color var(--duration-base);
}
.page-hero--about .breadcrumb a:hover { color: var(--accent); }


/* ──────────────────────────────────────────────────────────
   2. WHO WE ARE
   ────────────────────────────────────────────────────────── */
.who-we-are { background: var(--color-white); }

.who-we-are__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-16);
  align-items: start;
}

/* Pull-quote column */
.who-we-are__quote { position: relative; }

.who-we-are__pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 700;
  font-style: italic;
  color: var(--color-navy);
  line-height: var(--leading-snug);
  border-left: 4px solid var(--accent);
  padding: var(--sp-4) 0 var(--sp-4) var(--sp-6);
  margin: 0 0 var(--sp-3);
  quotes: none;
}

.who-we-are__quote-sig {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-sub);
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-8);
}

/* Quick-fact pills */
.who-we-are__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin: 0;
}

.who-we-are__fact {
  background: var(--color-white);
  border: 1px solid rgba(0,176,240,.2);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-sm);
}

.who-we-are__fact dt {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-1);
}

.who-we-are__fact dd {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
}

/* Body / right column */
.who-we-are__body .section-eyebrow { display: block; margin-bottom: var(--sp-2); }

.who-we-are__body p {
  font-size: var(--text-base);
  color: var(--text-sub);
  line-height: var(--leading-loose);
  margin-bottom: var(--sp-5);
}
.who-we-are__body p:last-of-type { margin-bottom: 0; }

.who-we-are__ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-8);
  align-items: center;
}


/* ──────────────────────────────────────────────────────────
   3. INDUSTRIES SECTION
   ────────────────────────────────────────────────────────── */
.industries-section { background: var(--color-offwhite); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.industry-card {
  background: var(--color-white);
  border: 1px solid rgba(0,32,96,.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-5) var(--sp-5);
  text-align: center;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base);
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,176,240,.3);
}

.industry-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(0,176,240,.08);
  margin: 0 auto var(--sp-3);
  transition: background var(--duration-base);
}
.industry-card:hover .industry-card__icon {
  background: rgba(0,176,240,.16);
}

.industry-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--sp-2);
}

.industry-card__desc {
  font-size: var(--text-sm);
  color: var(--text-sub);
  line-height: var(--leading-normal);
  margin: 0;
}


/* ──────────────────────────────────────────────────────────
   4. TIMELINE — ALTERNATING LAYOUT
   ────────────────────────────────────────────────────────── */
.timeline-section {
  position: relative;
  background: var(--color-white);
}

.timeline {
  position: relative;
  padding: 0;
  list-style: none;
  margin: 0;
}

/* Central vertical spine */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 0;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--accent), #0078d4);
  border-radius: 2px;
  transition: height 1.6s var(--ease-out);
}
.timeline.is-drawn::before { height: 100%; }

/* Each timeline item */
.timeline__item {
  position: relative;
  width: 46%;
  padding-bottom: var(--sp-12);
}
.timeline__item:last-child { padding-bottom: 0; }

/* Left-side items */
.timeline__item--left {
  margin-left: 0;
  margin-right: auto;
  padding-right: var(--sp-10);
  text-align: right;
}

/* Right-side items */
.timeline__item--right {
  margin-left: auto;
  margin-right: 0;
  padding-left: var(--sp-10);
  text-align: left;
}

/* Dot centered on spine */
.timeline__dot {
  position: absolute;
  top: 10px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--accent);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--duration-base),
    transform var(--duration-base) var(--ease-spring);
}
.timeline__item--left  .timeline__dot { right: -26px; }
.timeline__item--right .timeline__dot { left:  -26px; }
.timeline__item:hover  .timeline__dot {
  background: var(--accent);
  transform: scale(1.15);
}

/* Year badge above dot */
.timeline__year {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(0,176,240,.1);
  border: 1px solid rgba(0,176,240,.25);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  white-space: nowrap;
}

/* Card */
.timeline__card {
  background: var(--color-white);
  border: 1px solid rgba(0,32,96,.09);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--duration-base),
    border-color var(--duration-base);
}
.timeline__item:hover .timeline__card {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,176,240,.25);
}

.timeline__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  flex-wrap: wrap;
}
.timeline__item--right .timeline__card-header { flex-direction: row; }
.timeline__item--left  .timeline__card-header { flex-direction: row-reverse; }

.timeline__card-title {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.25;
  margin: 0;
}

.timeline__card-stat {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-white);
  background: var(--accent);
  border-radius: var(--radius-full);
  padding: 3px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.timeline__card-desc {
  font-size: var(--text-sm);
  color: var(--text-sub);
  line-height: var(--leading-loose);
  margin: 0;
}


/* ──────────────────────────────────────────────────────────
   5. VALUES SECTION
   ────────────────────────────────────────────────────────── */
.values-section { background: var(--color-offwhite); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.value-card {
  background: var(--color-white);
  border: 1px solid rgba(0,32,96,.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-5) var(--sp-5);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base);
  cursor: default;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,176,240,.28);
}

.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(0,176,240,.08);
  margin-bottom: var(--sp-3);
  transition: background var(--duration-base);
}
.value-card:hover .value-card__icon { background: rgba(0,176,240,.16); }

.value-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--sp-2);
}

.value-card__desc {
  font-size: var(--text-sm);
  color: var(--text-sub);
  line-height: var(--leading-loose);
  margin: 0;
}


/* ──────────────────────────────────────────────────────────
   6. LEADERSHIP / TEAM SECTION
   ────────────────────────────────────────────────────────── */
.team-section { background: var(--color-white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

/* Card */
.team-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,32,96,.07), 0 8px 32px rgba(0,32,96,.05);
  border: 1px solid rgba(0,32,96,.08);
  transition:
    transform 0.35s cubic-bezier(.22,.68,0,1.2),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,32,96,.13), 0 4px 16px rgba(0,176,240,.1);
  border-color: rgba(0,176,240,.3);
}

/* Photo area */
.team-card__photo-wrap {
  position: relative;
  width: 100%;
  height: 420px; /* fixed height */
  overflow: hidden;
  background: linear-gradient(160deg, #e8eef8 0%, #c8d8ef 100%);
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-card:hover .team-card__photo {
  transform: scale(1.04);
}

/* Gradient overlay at bottom of photo */
.team-card__photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0, 20, 70, 0.55) 100%
  );
  pointer-events: none;
}

/* LinkedIn badge floated on photo */
.team-card__linkedin {
  position: absolute;
  bottom: var(--sp-4);
  right: var(--sp-4);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: .03em;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.team-card__linkedin:hover {
  background: var(--accent);
  color: var(--color-white);
  transform: scale(1.05);
}
.team-card__linkedin svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/* Content below photo */
.team-card__content {
  padding: var(--sp-6) var(--sp-6) var(--sp-7);
  display: flex;
  flex-direction: column;
  flex: 1;

  /* NEW */
  text-align: center;
  align-items: center;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--sp-1);
  letter-spacing: -.01em;
  line-height: 1.25;
  margin-top: 10px;
}

.team-card__title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--sp-4);
}

.team-card__bio {
  font-size: var(--text-sm);
  color: var(--text-sub);
  line-height: 1.8;

  margin-top: 5px;
  margin-bottom: 10px;
  padding: 0 10px;

  flex: 1;
}

/* Note below grid */
.team-section__note {
  margin-top: var(--sp-10);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-sub);
  line-height: var(--leading-loose);
  max-width: 640px;
  margin-inline: auto;
}
.team-section__note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.team-section__note a:hover { text-decoration: underline; }


/* ──────────────────────────────────────────────────────────
   7. AWARDS MARQUEE STRIP
   ────────────────────────────────────────────────────────── */
.awards-strip {
  overflow: hidden;
  background: var(--color-navy);
}

.awards-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.awards-marquee__track {
  display: flex;
  gap: var(--sp-4);
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.awards-marquee:hover .awards-marquee__track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.award-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(0,176,240,.25);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  white-space: nowrap;
  transition:
    background var(--duration-base),
    border-color var(--duration-base);
}
.award-chip:hover {
  background: rgba(0,176,240,.15);
  border-color: rgba(0,176,240,.5);
}


/* ──────────────────────────────────────────────────────────
   8. MISSION & VISION CARDS
   ────────────────────────────────────────────────────────── */
.mv-cards {
  background: var(--color-navy-dark);
}

.mv-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.mv-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  padding: var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: transform var(--duration-base) var(--ease-out);
}
.mv-card:hover { transform: translateY(-4px); }

/* Mission — navy bg */
.mv-card--mission {
  background: linear-gradient(140deg, #002060 0%, #003a8c 100%);
  border: 1px solid rgba(0,176,240,.2);
  box-shadow: 0 8px 40px rgba(0,32,96,.4);
}

/* Vision — light bg */
.mv-card--vision {
  background: linear-gradient(140deg, #e8f4fb 0%, #c9e8f7 100%);
  border: 1px solid rgba(0,32,96,.12);
  box-shadow: 0 8px 40px rgba(0,32,96,.1);
}

/* Decorative dot-grid pattern */
.mv-card__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.mv-card--vision .mv-card__pattern {
  background-image: radial-gradient(circle, rgba(0,32,96,.07) 1px, transparent 1px);
}

/* Icon */
.mv-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.mv-card--vision .mv-card__icon {
  background: rgba(0,32,96,.1);
}

/* Heading */
.mv-card__heading {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  margin: 0;
  position: relative;
  z-index: 1;
}
.mv-card--mission .mv-card__heading { color: var(--color-white); }
.mv-card--vision  .mv-card__heading { color: var(--color-navy); }

/* Text */
.mv-card__text {
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}
.mv-card--mission .mv-card__text { color: rgba(255,255,255,.82); }
.mv-card--vision  .mv-card__text { color: var(--color-navy); }

.mv-card__text strong { font-weight: 700; }
.mv-card--mission .mv-card__text strong { color: var(--accent); }

/* CTA */
.mv-card__cta {
  align-self: flex-start;
  margin-top: var(--sp-2);
  position: relative;
  z-index: 1;
}

/* Outline-white button variant */
.btn--outline-white {
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,.6);
  background: transparent;
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  transition:
    background var(--duration-base),
    border-color var(--duration-base);
  cursor: pointer;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* Navy button variant */
.btn--navy {
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  background: var(--color-navy);
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  transition:
    background var(--duration-base),
    box-shadow var(--duration-base);
  cursor: pointer;
}
.btn--navy:hover {
  background: #003a8c;
  box-shadow: 0 4px 16px rgba(0,32,96,.3);
}


/* ──────────────────────────────────────────────────────────
   9. CTA STRIP
   ────────────────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--accent) 0%, #0078d4 100%);
}

.cta-strip__inner {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.cta-strip__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.cta-strip__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,.88);
  line-height: var(--leading-loose);
  margin-bottom: var(--sp-8);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

.cta-strip__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* Ghost-navy button for CTA strip (white bg, navy text, transparent on hover) */
.btn--ghost-navy {
  display: inline-flex;
  align-items: center;
  color: var(--color-navy);
  background: var(--color-white);
  border: 2px solid var(--color-white);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--duration-base),
    color var(--duration-base),
    border-color var(--duration-base);
}
.btn--ghost-navy:hover,
.btn--ghost.btn--ghost-navy:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}


/* ──────────────────────────────────────────────────────────
   10. SHARED SECTION HEADER
   ────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--sp-12);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}
.section-eyebrow--light { color: rgba(255,255,255,.65); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}
.section-title--white { color: var(--color-white); }
.section-title--left  { text-align: left; }

.section-subtitle {
  font-size: var(--text-base);
  color: var(--text-sub);
  line-height: var(--leading-loose);
  margin: 0;
}
/* Light variant subtitles */
.section-header--light .section-subtitle { color: rgba(255,255,255,.7); }


/* ──────────────────────────────────────────────────────────
   11. RESPONSIVE — Tablet  ≤1023px
   ────────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  /* Who We Are: stack columns */
  .who-we-are__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  /* Timeline: collapse to single left-aligned column */
  .timeline::before {
    left: 24px;
    transform: none;
  }
  .timeline__item,
  .timeline__item--left,
  .timeline__item--right {
    width: 100%;
    margin: 0;
    padding-left: 68px;
    padding-right: 0;
    text-align: left;
  }
  .timeline__item--left  .timeline__dot,
  .timeline__item--right .timeline__dot {
    left: 0;
    right: auto;
  }
  .timeline__item--left .timeline__card-header {
    flex-direction: row;
  }

  /* MV cards: stack */
  .mv-cards__grid { grid-template-columns: 1fr; }

  /* Team grid: single column on tablet */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Industries: 2 cols */
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  /* Values: 2 cols */
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ──────────────────────────────────────────────────────────
   12. RESPONSIVE — Mobile  ≤767px
   ────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .section-pad { padding-block: clamp(2.5rem, 6vw, 4rem); }

  .page-hero__stat-chips { gap: var(--sp-2); }
  .who-we-are__facts { grid-template-columns: 1fr 1fr; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }

  .cta-strip__sub { margin-bottom: var(--sp-6); }
}

/* ──────────────────────────────────────────────────────────
   13. RESPONSIVE — Small mobile  ≤479px
   ────────────────────────────────────────────────────────── */
@media (max-width: 479px) {
  .industries-grid { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .who-we-are__facts { grid-template-columns: 1fr; }

  .mv-card { padding: var(--sp-7) var(--sp-5); }

  .cta-strip__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 1023px) {
  .team-card__photo-wrap {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .team-card__photo-wrap {
    height: 340px;
  }
}