/* ============================================================
   FOUNTHEAD — ABOUT US PAGE (rebuilt)
   Uses global tokens from styles.css (colors, type scale, weights).
   Namespace: .ab2-*  (fresh namespace to avoid legacy .ab-* clashes)
   ============================================================ */

/* ---------- Shared eyebrow / section title ---------- */
.ab2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.3px;
  text-transform: none;
  margin-bottom: 16px;
}
.ab2-eyebrow::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.ab2-eyebrow--light { color: var(--gold); }

.ab2-section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--navy);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: 24px;
}
.ab2-section-title--light { color: var(--white); }

/* ============================================================
   FOLD 1 — HERO / BANNER
   ============================================================ */
.ab2-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--navy);
}
.ab2-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ab2-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,32,53,0.92) 0%, rgba(10,32,53,0.75) 55%, rgba(10,32,53,0.85) 100%);
}
.ab2-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
}
.ab2-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.5vw, 54px);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.ab2-hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.88);
  line-height: var(--lh-loose);
  margin-bottom: 28px;
  max-width: 520px;
}
.ab2-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: rgba(255,191,0,0.1);
  border: 1px solid rgba(255,191,0,0.4);
  border-radius: 14px;
  color: var(--white);
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}
.ab2-hero__cta i { font-size: var(--fs-h5); color: var(--gold); }
.ab2-hero__cta span { font-size: var(--fs-sm); color: rgba(255,255,255,0.7); display: block; }
.ab2-hero__cta strong { font-size: var(--fs-cta); font-weight: var(--fw-semibold); display: block; }
.ab2-hero__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.ab2-hero__cta:hover i,
.ab2-hero__cta:hover span,
.ab2-hero__cta:hover strong { color: var(--navy); }

/* ============================================================
   FOLD 2 — WHO WE ARE
   ============================================================ */
.ab2-who { background: var(--white); padding: 120px 0; }
.ab2-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ab2-who__text {
  font-size: var(--fs-cta);
  color: var(--text-body);
  line-height: var(--lh-loose);
  margin-bottom: 18px;
}
.ab2-who__text strong { color: var(--navy); font-weight: var(--fw-semibold); }

.ab2-who__visual { position: relative; }
.ab2-who__img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.ab2-who__img { width: 100%; height: 440px; object-fit: cover; display: block; }
.ab2-who__accent {
  position: absolute;
  top: -30px; right: -30px;
  width: 180px; height: 180px;
  background: var(--gold);
  border-radius: 18px;
  z-index: 1;
  opacity: 0.95;
}
.ab2-who__badge {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.ab2-who__badge-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
  font-size: var(--fs-h5);
}
.ab2-who__badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-cta);
  color: var(--navy);
}
.ab2-who__badge span {
  font-size: var(--fs-xs);
  color: var(--gray-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================================
   FOLD 3 — INDUSTRIES (bento grid, image-backed tiles)
   ============================================================ */
.ab2-industries {
  position: relative;
  background: var(--navy);
  padding: 120px 0 140px;
  overflow: hidden;
}
/* Subtle dotted pattern accent in background */
.ab2-industries__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
}
.ab2-industries__header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.ab2-industries__header .ab2-eyebrow { justify-content: center; }
.ab2-industries__sub {
  font-size: var(--fs-cta);
  color: rgba(255,255,255,0.78);
  line-height: var(--lh-loose);
}

/* Uniform 5×2 grid (all tiles same size) */
.ab2-industries__bento {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.ab2-ind-tile {
  position: relative;
  display: block;
  height: 240px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  cursor: default;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  isolation: isolate;
}
.ab2-ind-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.ab2-ind-tile:hover .ab2-ind-tile__img { transform: scale(1.06); }

/* Modifier: full image visible (contain) with same-image blurred backdrop.
   Two <img> copies — bg covers full tile (blurred), fg shows full content (contain) */
.ab2-ind-tile--fit { isolation: isolate; }
.ab2-ind-tile__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(22px);                /* only soft blur, no darkening tint */
  transform: scale(1.18);            /* avoid blur edge artifacts */
  z-index: 0;
}
.ab2-ind-tile--fit .ab2-ind-tile__img {
  object-fit: contain;
  z-index: 1;
}
.ab2-ind-tile--fit::before { z-index: 2; }      /* gradient overlay above both imgs */
.ab2-ind-tile--fit .ab2-ind-tile__name { z-index: 3; }

/* Dark gradient overlay — bottom heavy so text reads */
.ab2-ind-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,32,53,0.25) 0%,
    rgba(10,32,53,0.45) 45%,
    rgba(10,32,53,0.92) 100%);
  transition: opacity 0.4s ease;
  z-index: 1;
}
.ab2-ind-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10,32,53,0.25);
}
.ab2-ind-tile:hover::before {
  background: linear-gradient(180deg,
    rgba(10,32,53,0.15) 0%,
    rgba(10,32,53,0.35) 50%,
    rgba(255,191,0,0.85) 100%);
}
.ab2-ind-tile__num {
  position: absolute;
  top: 18px; left: 20px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,0.65);
  letter-spacing: 2px;
}
.ab2-ind-tile__icon {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,191,0,0.92);
  color: var(--navy);
  display: grid; place-items: center;
  font-size: var(--fs-body);
  transition: transform 0.3s ease;
}
.ab2-ind-tile:hover .ab2-ind-tile__icon {
  transform: rotate(-10deg) scale(1.08);
  background: var(--white);
}
.ab2-ind-tile__name {
  position: absolute;
  left: 20px; right: 20px;
  bottom: 18px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: var(--fs-cta);
  color: var(--white);
  font-weight: var(--fw-semibold);
  line-height: 1.25;
  letter-spacing: -0.2px;
}

/* ============================================================
   FOLD 4 — KEY PROBLEMS / THE DISCONNECT (light editorial split)
   ============================================================ */
.ab2-problem {
  position: relative;
  background: var(--white);
  padding: 130px 0;
  overflow: hidden;
}
.ab2-problem__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.ab2-problem__left {
  position: sticky;
  top: 120px;
}
.ab2-problem__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  color: var(--navy);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: 24px;
}
.ab2-problem__lead {
  font-size: var(--fs-lg);
  color: var(--gray-600);
  line-height: var(--lh-loose);
  max-width: 460px;
}
.ab2-problem__copy {
  font-size: var(--fs-cta);
  color: var(--text-body);
  line-height: var(--lh-loose);
  margin-bottom: 36px;
  padding: 16px 20px 16px 22px;
  background: rgba(10,32,53,0.04);
  border-left: 4px solid var(--navy);
  border-radius: 0 8px 8px 0;
}
.ab2-problem__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ab2-problem__points li {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 28px 22px 32px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy);
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 28px rgba(10,32,53,0.15);
  transition: all 0.3s ease;
}
.ab2-problem__points li:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 18px 40px rgba(10,32,53,0.28);
}
.ab2-problem__points li:hover .ab2-problem__num {
  background: var(--white);
  color: var(--navy);
}
/* Gold-filled badge with navy number — pops on navy card */
.ab2-problem__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  transition: background 0.3s ease, color 0.3s ease;
}
.ab2-problem__points h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  color: var(--white);
  font-weight: var(--fw-semibold);
  margin-bottom: 6px;
  line-height: 1.3;
}
.ab2-problem__points li p {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.78);
  line-height: var(--lh-loose);
  margin: 0;
}

/* ============================================================
   FOLD 5b — MANIFESTO (alt purpose, creative layout)
   Layered watermark + 3-stage horizontal flow
   ============================================================ */
.ab2-manifesto {
  position: relative;
  background: var(--off-white);
  padding: 140px 0 160px;
  overflow: hidden;
}
/* HUGE watermark text behind everything */
.ab2-manifesto__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(180px, 22vw, 380px);
  font-weight: 800;
  color: rgba(10,32,53,0.04);
  letter-spacing: -10px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  line-height: 1;
}
.ab2-manifesto .container { position: relative; z-index: 2; }

/* TOP — eyebrow + title (left) and statement (right) */
.ab2-manifesto__top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 100px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--gray-200);
}
.ab2-manifesto__title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 60px);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: var(--fw-semibold);
}
.ab2-manifesto__statement p {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  color: var(--text-body);
  line-height: var(--lh-loose);
  font-style: normal;
  position: relative;
  padding-left: 28px;
}
.ab2-manifesto__statement p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: var(--gold);
  border-radius: 2px;
}

/* 3-STAGE FLOW — horizontal row */
.ab2-manifesto__flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
/* Connector line behind cards */
.ab2-manifesto__flow::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(to right,
    var(--gold) 0 8px,
    transparent 8px 16px);
  z-index: 0;
}

.ab2-flow-step {
  position: relative;
  background: var(--navy);
  padding: 44px 34px 38px;
  border-radius: 22px;
  border: 1px solid var(--navy);
  box-shadow: 0 16px 40px rgba(10,32,53,0.18);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  z-index: 1;
}
.ab2-flow-step:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 26px 56px rgba(10,32,53,0.32);
}
.ab2-flow-step:hover .ab2-flow-step__icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(-8deg) scale(1.05);
}

/* Icon circle — gold filled, navy icon (pops on navy card) */
.ab2-flow-step__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: var(--fs-h4);
  margin-bottom: 26px;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.ab2-flow-step__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--white);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.ab2-flow-step__desc {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.78);
  line-height: var(--lh-loose);
  margin: 0;
}

/* ============================================================
   FOLD 6 — HOW WE STARTED (story narrative)
   ============================================================ */
.ab2-story {
  position: relative;
  background: var(--white);
  padding: 140px 0 160px;
  overflow: hidden;
}
.ab2-story__bg-text {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--font-heading);
  font-size: clamp(90px, 12vw, 180px);
  font-weight: 800;
  color: rgba(10,32,53,0.05);
  letter-spacing: -2px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.ab2-story .container { position: relative; z-index: 2; }

.ab2-story__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.ab2-story__header .ab2-eyebrow { justify-content: center; }

.ab2-story__layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}

/* LEFT — visual collage */
.ab2-story__visual {
  position: relative;
  min-height: 560px;
}
.ab2-story__year-block {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(10,32,53,0.18);
  z-index: 4;
  max-width: 220px;
}
.ab2-story__year-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  margin-bottom: 6px;
}
.ab2-story__year-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.ab2-story__year-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--white);
  font-weight: var(--fw-semibold);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.ab2-story__year-meta {
  display: block;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.ab2-story__photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10,32,53,0.18);
}
.ab2-story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.ab2-story__photo:hover img { transform: scale(1.06); }

.ab2-story__photo--main {
  top: 80px;
  right: 0;
  width: 78%;
  height: 360px;
  z-index: 2;
}
.ab2-story__photo--secondary {
  bottom: 0;
  left: 30px;
  width: 55%;
  height: 240px;
  z-index: 3;
  border: 6px solid var(--white);
}

.ab2-story__sticker {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  box-shadow: 0 12px 28px rgba(10,32,53,0.18);
  z-index: 4;
  transform: rotate(-3deg);
}
.ab2-story__sticker i { font-size: var(--fs-body); }

/* RIGHT — chapter narrative */
.ab2-story__narrative {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  padding-left: 12px;
  padding-top: 90px;
}
/* Single flowing prose — clean, no border, no kicker, no dropcap */
.ab2-story__prose {
  position: relative;
}
.ab2-story__lead {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}
.ab2-story__lead strong {
  color: var(--navy);
  font-weight: var(--fw-semibold);
}

.ab2-story__quote {
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: var(--fs-cta);
  color: var(--white);
  font-weight: var(--fw-semibold);
  font-style: italic;
  box-shadow: 0 12px 30px rgba(10,32,53,0.18);
}
.ab2-story__quote i {
  color: var(--gold);
  font-size: var(--fs-h4);
  flex-shrink: 0;
}

/* ============================================================
   FOLD 7a — MILESTONES (era-grouped editorial spreads)
   4 chapter cards, alternating image-left / image-right.
   Navy primary, gold accent.
   ============================================================ */
.ab2-eras {
  background: var(--navy);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}
.ab2-eras__bg-shape {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,191,0,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.ab2-eras .container { position: relative; z-index: 2; }

.ab2-eras__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.ab2-eras__header .ab2-eyebrow { justify-content: center; }
.ab2-eras__sub {
  font-size: var(--fs-cta);
  color: rgba(255,255,255,0.78);
  line-height: var(--lh-loose);
}

.ab2-eras__list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
/* Subtle vertical connector line behind the cards */
.ab2-eras__list::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: repeating-linear-gradient(to bottom,
    rgba(255,191,0,0.3) 0 6px,
    transparent 6px 14px);
  transform: translateX(-50%);
  z-index: 0;
}

.ab2-era {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  z-index: 1;
}
.ab2-era--right .ab2-era__media { order: 2; }

/* --- MEDIA SIDE (image) --- */
.ab2-era__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 380px;
  background: var(--navy);
  box-shadow: 0 20px 50px rgba(10,32,53,0.15);
}
.ab2-era__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.ab2-era__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,32,53,0.05) 0%, rgba(10,32,53,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.ab2-era:hover .ab2-era__img { transform: scale(1.06); }

/* Chapter chip overlay on media */
.ab2-era__chip {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(255,191,0,0.35);
  font-family: var(--font-heading);
  line-height: 1;
}
.ab2-era__chip span {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.85;
}
.ab2-era__chip strong {
  display: block;
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.5px;
}
.ab2-era--right .ab2-era__chip { left: auto; right: 22px; }

/* --- BODY SIDE (text) --- */
.ab2-era__body {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ab2-era__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  background: rgba(255,191,0,0.15);
  border-radius: 20px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ab2-era__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.ab2-era__lead {
  font-size: var(--fs-cta);
  color: rgba(255,255,255,0.7);
  line-height: var(--lh-loose);
  font-style: italic;
  margin-bottom: 24px;
  max-width: 480px;
}

/* Milestones list inside the era */
.ab2-era__list-items {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}
.ab2-era__list-items li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ab2-era__yr {
  flex-shrink: 0;
  min-width: 70px;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--gold);
  letter-spacing: -0.2px;
  padding-top: 2px;
}
.ab2-era__list-items li p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin: 0;
}
.ab2-era__list-items li p strong { color: var(--white); font-weight: var(--fw-semibold); }

/* Client logos row */
.ab2-era__logos {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  align-self: flex-start;
  flex-wrap: wrap;
}
.ab2-era__logos img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.ab2-era__logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ============================================================
   FOLD 7b — VALUES (light)
   ============================================================ */
.ab2-values {
  background: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ab2-values__header {
  text-align: center;
  margin-bottom: 56px;
}
.ab2-values__header .ab2-eyebrow { justify-content: center; }
/* Single navy panel with values list + paragraph */
.ab2-values__panel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 24px;
  padding: 56px 64px 52px;
  box-shadow: 0 24px 60px rgba(10,32,53,0.20);
  overflow: hidden;
}
/* Subtle gold radial glow top-right */
.ab2-values__panel::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,191,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
/* Gold accent stripe top */
.ab2-values__panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 0 4px 4px 0;
}
.ab2-values__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 44px;
  position: relative;
  z-index: 1;
}
.ab2-values__list li {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
/* Gold side pointer (dash) before each value */
.ab2-values__list li::before {
  content: '';
  width: 22px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.ab2-values__word {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--white);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.4px;
  line-height: 1.1;
}
.ab2-values__copy {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}

/* ============================================================
   FOLD 8 — TEAM (3-in-a-row, centered, featured-middle)
   ============================================================ */
.ab2-team {
  background: var(--white);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.ab2-team__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.ab2-team__header .ab2-eyebrow { justify-content: center; }
.ab2-team__title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.4vw, 50px);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: var(--fw-semibold);
  margin-bottom: 18px;
}
.ab2-team__copy {
  font-family: var(--font-body);
  font-size: var(--fs-cta);
  color: var(--text-body);
  line-height: var(--lh-loose);
}

/* Row of 3 cards, evenly aligned */
.ab2-team__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
  padding-top: 110px; /* reserve space for photo overhang */
}

.ab2-leader-card {
  position: relative;
  background: var(--navy);
  border-radius: 16px;
  padding: 0 28px 36px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
  box-shadow: 0 18px 36px rgba(10,32,53,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ab2-leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px rgba(10,32,53,0.24);
}

/* Featured card now matches base card — all three equal size/height */
.ab2-leader-card--featured {
  transform: none;
  box-shadow: 0 18px 36px rgba(10,32,53,0.14);
  background: var(--navy);
}
.ab2-leader-card--featured:hover {
  transform: translateY(-10px);
}

/* Circular photo: cream bg so transparent PNGs blend nicely.
   Thin gold border on all cards. */
.ab2-leader-card__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 14px 30px rgba(10,32,53,0.22);
  margin-top: -100px;
  margin-bottom: 26px;
  border: 3px solid var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.ab2-leader-card--featured .ab2-leader-card__photo {
  width: 200px;
  height: 200px;
  margin-top: -100px;
  border-width: 3px;
}
.ab2-leader-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.ab2-leader-card:hover .ab2-leader-card__photo img {
  transform: scale(1.06);
}

.ab2-leader-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.ab2-leader-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--white);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  margin-bottom: 6px;
}
.ab2-leader-card__role {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  color: var(--gold);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.3px;
  margin-bottom: 18px;
}
.ab2-leader-card__tag {
  display: inline-block;
  padding: 5px 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.ab2-leader-card__bio {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 20px;
  text-align: center;
}
.ab2-leader-card__social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.ab2-leader-card__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: var(--fs-base);
  transition: all 0.3s ease;
}
.ab2-leader-card__social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ============================================================
   FOLD 9 — CONTACT
   ============================================================ */
.ab2-contact {
  background: var(--off-white);
  padding: 120px 0;
}
.ab2-contact__card {
  background: var(--navy);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 24px 60px rgba(10,32,53,0.2);
}
.ab2-contact__left { padding: 64px 56px; }
.ab2-contact__copy {
  font-size: var(--fs-cta);
  color: rgba(255,255,255,0.75);
  line-height: var(--lh-loose);
  margin-bottom: 32px;
}
.ab2-contact__items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.ab2-contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  transition: transform 0.3s ease;
}
.ab2-contact__item:hover { transform: translateX(4px); }
.ab2-contact__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,191,0,0.15);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: var(--fs-h5);
  flex-shrink: 0;
}
.ab2-contact__item h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}
.ab2-contact__item span {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.ab2-contact__social {
  display: flex;
  gap: 12px;
}
.ab2-contact__social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: grid; place-items: center;
  transition: all 0.3s ease;
}
.ab2-contact__social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.ab2-contact__map { position: relative; min-height: 500px; }
.ab2-contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ab2-industries__bento { grid-template-columns: repeat(4, 1fr); }
  .ab2-values__panel { padding: 44px 40px 40px; }
  .ab2-team__row { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
@media (max-width: 900px) {
  .ab2-hero__layout,
  .ab2-who__grid,
  .ab2-problem__layout,
  .ab2-manifesto__top,
  .ab2-story__layout,
  .ab2-contact__card { grid-template-columns: 1fr; gap: 40px; }
  .ab2-team__row { grid-template-columns: 1fr; gap: 60px; padding-top: 110px; }
  .ab2-leader-card--featured { transform: none; }
  .ab2-leader-card--featured:hover { transform: translateY(-10px); }
  .ab2-story__visual { min-height: 480px; }
  .ab2-story__photo--main { width: 88%; height: 300px; }
  .ab2-story__photo--secondary { width: 60%; height: 200px; }
  .ab2-manifesto__flow { grid-template-columns: 1fr; gap: 24px; }
  .ab2-manifesto__flow::before { display: none; }
  .ab2-problem__left { position: static; }
  .ab2-contact__left { padding: 48px 32px; }
  .ab2-contact__map { min-height: 360px; }
  .ab2-industries__bento { grid-template-columns: repeat(2, 1fr); }
  /* Eras: stack vertically, image first */
  .ab2-era,
  .ab2-era--right { grid-template-columns: 1fr; gap: 24px; }
  .ab2-era--right .ab2-era__media { order: 0; }
  .ab2-era__media { min-height: 260px; }
  .ab2-eras__list::before { left: 20px; }
  .ab2-eras__list { gap: 40px; }
  .ab2-values__panel { padding: 36px 26px 32px; border-radius: 18px; }
  .ab2-values__list { flex-direction: column; gap: 10px; }
  .ab2-values__num, .ab2-values__word { font-size: var(--fs-h4); }
  /* Timeline: all to single column on mobile */
  .ab2-timeline__track::before { left: 20px; }
  .ab2-timeline__item { grid-template-columns: 1fr; gap: 10px; padding-left: 50px; }
  .ab2-timeline__item::before { left: 20px; }
  .ab2-timeline__item--left .ab2-timeline__year,
  .ab2-timeline__item--right .ab2-timeline__year {
    grid-column: 1; text-align: left; padding: 0;
  }
  .ab2-timeline__item--left .ab2-timeline__card,
  .ab2-timeline__item--right .ab2-timeline__card {
    grid-column: 1; text-align: left;
  }
}
@media (max-width: 560px) {
  .ab2-industries__bento { grid-template-columns: 1fr; }
  .ab2-who__accent { width: 120px; height: 120px; }
  .ab2-who__badge { bottom: -18px; left: -10px; }
}
