/* who-we-are.css — Who We Are hub */
@import url("styles.css");

/* ============ Breadcrumb ============ */
.breadcrumb {
  padding-top: 120px;
  padding-bottom: 8px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}
.breadcrumb a { color: var(--avion-blue); text-decoration: none; }
.breadcrumb a:hover { color: var(--avion-navy); }
.breadcrumb .sep { margin: 0 10px; color: var(--line); }
.breadcrumb .current { color: var(--avion-navy); }

/* ============ Hero ============ */
.wwa-hero { padding: 32px 0 56px; position: relative; }
.wwa-hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.98; letter-spacing: -0.025em;
  color: var(--avion-navy); margin: 18px 0 28px;
}
.wwa-hero .lede {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--ink-2);
  max-width: 880px;
  margin: 0 0 18px;
}
.wwa-hero .lede em {
  font-style: italic;
  color: var(--avion-blue);
}
.wwa-hero-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.wwa-hero-meta .meta-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 4.5vw, 64px); color: var(--avion-blue);
  line-height: 1; letter-spacing: -0.02em;
}
.wwa-hero-meta .meta-label {
  display: block; margin-top: 10px;
  font-family: var(--font-display); font-weight: 900; font-size: 14px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3);
}

/* ============ Section head shared ============ */
.section-head { max-width: 820px; margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.06;
  letter-spacing: -0.018em; color: var(--avion-navy);
  margin: 18px 0 0;
}
.section-head .p { margin-top: 18px; font-size: 17px; color: var(--ink-2); max-width: 760px; }

/* ============ Our Story ============ */
/* When the Story section sits on navy, invert text colors and recolor the
   napkin frame so the photo still reads as a tactile paper artifact. */
.wwa-story.section--navy {
  background: var(--avion-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wwa-story.section--navy::before {
  /* Subtle dot field in the top-right echoing the partner-quote card it replaced. */
  content: ""; position: absolute; top: 0; right: 0;
  width: 360px; height: 360px;
  background-image: radial-gradient(circle, rgba(134,203,236,0.45) 2px, transparent 2.5px);
  background-size: 22px 22px;
  opacity: 0.28;
  pointer-events: none;
}
.wwa-story.section--navy .container { position: relative; z-index: 1; }
.wwa-story.section--navy .eyebrow { color: #fff; }
.wwa-story.section--navy .eyebrow--dot::before { background: var(--avion-sky-1); }
.wwa-story.section--navy h2 { color: #fff; }
.wwa-story.section--navy .italic-accent { color: var(--avion-sky-1); }
.wwa-story.section--navy .p { color: #fff; }
.wwa-story.section--navy .story-napkin-caption { color: #fff; }
.wwa-story.section--navy .story-napkin-frame {
  background: #f6efe1;
  border-color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.story-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.story-grid--text {
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
}
.story-lede-col {
  position: sticky; top: 120px;
}
.story-lede-p {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.4;
  color: var(--ink-2);
  max-width: 44ch;
}
.story-narrative p + p { margin-top: 1.1em; }

/* Story — napkin figure (founding story illustration). The image carries the
   visual weight that the italic lede used to; same column width as before. */
.story-napkin {
  position: sticky; top: 120px;
  margin: 0;
}
.story-napkin-frame {
  background: var(--paper-tint);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-1);
  transform: rotate(-1.2deg);
  transition: transform 320ms var(--ease-standard), box-shadow 320ms var(--ease-standard);
}
.story-napkin-frame:hover {
  transform: rotate(0deg);
  box-shadow: var(--shadow-2);
}
.story-napkin-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.story-napkin-caption {
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
}

/* Sacha quote card */
.partner-quote {
  margin-top: 48px;
  background: var(--avion-navy);
  color: #fff;
  padding: clamp(36px, 4vw, 56px) clamp(32px, 4vw, 56px);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.partner-quote::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 240px; height: 240px;
  background-image: radial-gradient(circle, rgba(134,203,236,0.45) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.35;
  pointer-events: none;
}
.partner-quote .quote-mark {
  font-family: var(--font-serif);
  font-size: 96px;
  line-height: 0.6;
  color: var(--avion-sky-2);
  font-style: italic;
  position: absolute;
  top: 28px;
  left: 24px;
  opacity: 0.55;
}
.partner-quote-body {
  position: relative; z-index: 1;
  font-family: var(--font-serif);
  font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  /* Global `p` rule sets an inky color; pin to white to read on navy. */
  color: #fff;
  margin: 0 0 28px;
  max-width: 32ch;
}
.partner-quote-attr {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 18px;
}
.partner-quote-avatar {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--avion-blue);
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: flex-end; justify-content: center;
  color: #fff;
}
.partner-quote-attr .name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
}
.partner-quote-attr .role {
  display: block; margin-top: 4px;
  font-family: var(--font-body); font-weight: 400; font-size: 14px;
  letter-spacing: 0.02em; text-transform: none;
  color: var(--avion-sky-3);
}

/* ============ Values (The Avion Way) ============ */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 16px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: 6px;
  position: relative;
  transition: transform 220ms var(--ease-standard), box-shadow 220ms;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(45,46,130,0.10);
}
.value-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 56px; height: 3px;
  background: var(--avion-blue);
}
.value-card:nth-child(2)::before { background: var(--avion-navy); }
.value-card:nth-child(3)::before { background: var(--avion-teal); }
.value-card:nth-child(4)::before { background: var(--avion-sky-1); }
.value-card:nth-child(5)::before { background: var(--avion-blue); }
.value-card:nth-child(6)::before { background: var(--avion-navy); }
.value-card .num {
  font-family: var(--font-display); font-weight: 900; font-size: 14px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--avion-sky-1);
  margin-bottom: 10px;
}
.value-card h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 19px; line-height: 1.25; color: var(--avion-navy);
  margin: 0 0 14px;
}
.value-card p {
  font-size: 14.5px; line-height: 1.6; color: var(--ink-2); margin: 0;
}

/* Mission callout */
.mission-callout {
  display: flex; align-items: flex-start; gap: 28px;
  background: var(--paper-tint);
  border-left: 4px solid var(--avion-blue);
  padding: 28px 32px;
  margin-bottom: 48px;
  border-radius: 0 6px 6px 0;
}
.mission-callout .label {
  font-family: var(--font-display); font-weight: 900; font-size: 14px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--avion-blue);
  flex-shrink: 0; padding-top: 6px;
  min-width: 130px;
}
.mission-callout p {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3; letter-spacing: -0.01em;
  color: var(--avion-navy);
  margin: 0;
}

/* ============ Team ============ */
.team-tier {
  margin-bottom: 80px;
}
.team-tier:last-child { margin-bottom: 0; }
.tier-header {
  display: flex; align-items: baseline; gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.tier-header h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.015em;
  color: var(--avion-navy);
  margin: 0;
}
.tier-header .tier-eye {
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--avion-sky-1);
}
.tier-header .count {
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
  margin-left: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(var(--team-cols, 4), 1fr);
  gap: clamp(20px, 2vw, 28px);
}
.team-grid--partners { grid-template-columns: repeat(3, 1fr); }
.team-grid--principals { grid-template-columns: repeat(5, 1fr); }
.team-grid--affiliates { grid-template-columns: repeat(5, 1fr); }
.team-grid--project { grid-template-columns: repeat(3, 1fr); max-width: 720px; }
.team-grid--memoriam { grid-template-columns: repeat(4, 1fr); max-width: 320px; }
.team-grid--all { grid-template-columns: repeat(5, 1fr); }

.team-card {
  display: block; text-decoration: none; color: inherit;
  cursor: pointer;
  text-align: center;
}
.team-card .name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 15px; line-height: 1.25; color: var(--avion-navy);
  margin: 16px 0 4px;
  letter-spacing: -0.005em;
}
.team-card .role {
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}
.team-card.is-large .name { font-size: 18px; }
.team-card.is-large .role { font-size: 14px; }

/* ============ Photo well (shared) ============ */
.photo-well {
  position: relative;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-tint-2);
  transition: transform 280ms var(--ease-standard), box-shadow 280ms;
}
.team-card:hover .photo-well {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(45,46,130,0.18);
}

/* The photo / placeholder layer */
.photo-figure {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 92%;
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 3;
}
.photo-figure svg {
  width: 78%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}
/* Real photo: take full well, anchored to bottom, contain so head isn't cut */
.photo-figure.has-photo {
  height: 100%;
  top: 0;
}
.photo-figure.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.08));
}
/* Initials badge */
.photo-initials {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 4;
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px; letter-spacing: 0.14em;
  padding: 5px 8px;
  background: rgba(255,255,255,0.65);
  color: var(--avion-navy);
  border-radius: 2px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* ============ TREATMENT: color block ============ */
.well--block { background: var(--tier-bg, var(--avion-sky-3)); }
.well--block .photo-figure {
  height: 88%;
}
.well--block .bg-art {
  position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.12) 100%);
  z-index: 1;
}

/* ============ TREATMENT: dot field ============ */
.well--dots {
  background:
    radial-gradient(ellipse at 50% 120%, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.0) 60%),
    var(--tier-bg, var(--avion-sky-3));
}
.well--dots .bg-art {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--tier-dot, rgba(255,255,255,0.55)) 1.6px, transparent 2px);
  background-size: 14px 14px;
  background-position: 0 0;
  z-index: 1;
  opacity: 0.85;
  mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
}

/* ============ TREATMENT: ribbon ============ */
.well--ribbon { background: var(--tier-bg-soft, var(--paper-tint-2)); }
.well--ribbon .bg-art {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
}
.well--ribbon .bg-art::before {
  content: ""; position: absolute;
  left: -10%; right: -10%;
  top: 38%; height: 32%;
  background: var(--tier-ribbon, var(--avion-blue));
  transform: rotate(-12deg);
  transform-origin: center;
}
.well--ribbon .bg-art::after {
  content: ""; position: absolute;
  left: -10%; right: -10%;
  top: 54%; height: 8%;
  background: var(--tier-ribbon-2, var(--avion-sky-1));
  transform: rotate(-12deg);
  transform-origin: center;
  opacity: 0.7;
}

/* ============ TREATMENT: arch ============ */
.well--arch { background: transparent; }
.team-card:hover .well--arch { box-shadow: none; transform: none; }
.well--arch .bg-art {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
}
.well--arch .bg-art::before {
  content: "";
  position: absolute;
  left: 8%; right: 8%;
  bottom: 0; top: 18%;
  background: var(--tier-bg, var(--avion-sky-3));
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  transition: transform 280ms var(--ease-standard), box-shadow 280ms;
}
.team-card:hover .well--arch .bg-art::before {
  transform: translateY(-6px);
  box-shadow: 0 22px 36px rgba(45,46,130,0.18);
}

/* ============ TREATMENT: duotone ============ */
.well--duotone { background: var(--tier-bg, var(--avion-navy)); }
.well--duotone .bg-art {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.08) 0%,
    rgba(0,0,0,0.25) 100%);
  z-index: 2;
}
.well--duotone .photo-figure {
  filter: grayscale(1) contrast(1.08) brightness(1.04);
  mix-blend-mode: luminosity;
}
.well--duotone .photo-figure svg {
  /* placeholder silhouette goes light-tone */
}
.well--duotone .photo-initials {
  background: rgba(255,255,255,0.85);
}

/* ============ TREATMENT: half-tone stripe ============ */
.well--stripe { background: #fff; }
.well--stripe .bg-art {
  position: absolute; inset: 0; z-index: 1;
}
.well--stripe .bg-art::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: 0; bottom: 38%;
  background: var(--tier-bg, var(--avion-sky-3));
}
.well--stripe .bg-art::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 32%; height: 4px;
  background: var(--tier-ribbon, var(--avion-navy));
}

/* ============ TREATMENT: circle (portrait medallion) ============ */
/* Photo cropped to a centered circle on paper-tint background. Thin sky ring
   doubles as a focus state — lifts on hover via the shared photo-well rule. */
.well--circle {
  background: transparent;
  overflow: visible;
  box-shadow: none;
  aspect-ratio: 1 / 1.1;
}
.team-card:hover .well--circle {
  box-shadow: none;
  transform: translateY(-4px);
}
.well--circle .bg-art {
  position: absolute;
  left: 8%; right: 8%; top: 0;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: var(--tier-bg-soft, var(--paper-tint-2));
  box-shadow: inset 0 0 0 1px rgba(45,46,130,0.08);
  z-index: 1;
  transition: box-shadow 280ms var(--ease-standard);
}
.team-card:hover .well--circle .bg-art {
  box-shadow: inset 0 0 0 2px var(--tier-ribbon, var(--avion-blue));
}
.well--circle .photo-figure {
  left: 8%; right: 8%; top: 0; bottom: auto;
  aspect-ratio: 1 / 1; height: auto;
  border-radius: 999px;
  overflow: hidden;
}
.well--circle .photo-figure.has-photo img {
  object-fit: cover;
  object-position: center 18%;
  filter: none;
}
.well--circle .photo-initials {
  top: auto;
  bottom: 8px;
  right: 50%;
  transform: translateX(50%);
}

/* ============ TREATMENT: polaroid (paper frame) ============ */
/* White paper frame, slight rotation, subtle desk shadow. Rotation alternates
   by nth-child for analog rhythm; flattens on hover. */
.well--polaroid {
  background: #fff;
  padding: 14px 14px 44px;
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 12px 22px rgba(45,46,130,0.10);
  transition: transform 360ms var(--ease-standard), box-shadow 360ms var(--ease-standard);
  transform: rotate(-1.2deg);
}
.team-card:nth-child(2n) .well--polaroid { transform: rotate(0.9deg); }
.team-card:nth-child(3n) .well--polaroid { transform: rotate(-0.4deg); }
.team-card:nth-child(4n) .well--polaroid { transform: rotate(1.4deg); }
.team-card:hover .well--polaroid {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 22px 36px rgba(45,46,130,0.16);
}
.well--polaroid .bg-art {
  position: absolute; inset: 14px 14px 44px 14px;
  background: var(--tier-bg-soft, var(--paper-tint-2));
}
.well--polaroid .photo-figure {
  inset: 14px 14px 44px 14px;
  left: 14px; right: 14px; top: 14px; bottom: 44px;
  height: auto;
}
.well--polaroid .photo-figure.has-photo img {
  object-position: center bottom;
  filter: none;
}
.well--polaroid::after {
  /* Faux handwritten caption line at the bottom of the polaroid */
  content: "";
  position: absolute;
  left: 28px; right: 28px; bottom: 20px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(45,46,130,0.18) 20%, rgba(45,46,130,0.18) 80%, transparent);
}

/* ============ TREATMENT: halftone (printed dot overlay) ============ */
/* Tier-tone wash with a fine dot pattern over only the photo area — a print-
   style halftone effect. Photo desaturated then color-tinted via blend mode. */
.well--halftone {
  background: var(--tier-bg, var(--avion-navy));
  overflow: hidden;
}
.well--halftone .bg-art {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.18) 1.2px, transparent 1.5px);
  background-size: 6px 6px;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}
.well--halftone .photo-figure {
  z-index: 1;
}
.well--halftone .photo-figure.has-photo img {
  filter: grayscale(1) contrast(1.06) brightness(1.02);
  mix-blend-mode: luminosity;
}
.well--halftone .photo-initials {
  background: rgba(255,255,255,0.85);
}

/* ============ TREATMENT: corner-grid (banner dot motif) ============ */
/* Clean transparent well, photo bottom-anchored, brand 4×4 dot grid in the
   upper-right — lifted directly from the Twitter banner. Hairline floor line
   keeps the figure grounded. */
.well--corner-grid {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.well--corner-grid .bg-art {
  position: absolute;
  top: 10px; right: 10px;
  width: 52px; height: 52px;
  background-image:
    radial-gradient(circle, var(--tier-ribbon, var(--avion-blue)) 1.6px, transparent 2px);
  background-size: 14px 14px;
  background-position: 0 0;
  opacity: 0.7;
  z-index: 2;
  pointer-events: none;
  transition: opacity 280ms var(--ease-standard), transform 280ms var(--ease-standard);
}
.team-card:hover .well--corner-grid .bg-art {
  opacity: 1;
  transform: translate(-2px, 2px);
}
.well--corner-grid::after {
  content: "";
  position: absolute;
  left: 14%; right: 14%; bottom: 0;
  height: 2px;
  background: var(--tier-ribbon, var(--avion-blue));
  opacity: 0.85;
}
.well--corner-grid .photo-figure {
  z-index: 1;
}
.well--corner-grid .photo-figure.has-photo img {
  filter: none;
}

/* ============ Tier color tokens ============ */
.tier-partner {
  --tier-bg: var(--avion-navy);
  --tier-bg-soft: #e7e8f7;
  --tier-dot: rgba(134,203,236,0.5);
  --tier-ribbon: var(--avion-sky-1);
  --tier-ribbon-2: var(--avion-sky-3);
}
.tier-emeritus {
  --tier-bg: #1f2068;
  --tier-bg-soft: #e2e3f0;
  --tier-dot: rgba(134,203,236,0.45);
  --tier-ribbon: var(--avion-blue);
  --tier-ribbon-2: var(--avion-sky-2);
}
.tier-principal {
  --tier-bg: var(--avion-blue);
  --tier-bg-soft: #dbe9f5;
  --tier-dot: rgba(255,255,255,0.55);
  --tier-ribbon: var(--avion-navy);
  --tier-ribbon-2: var(--avion-sky-1);
}
.tier-affiliate {
  --tier-bg: var(--avion-sky-3);
  --tier-bg-soft: #e6f3fb;
  --tier-dot: rgba(45,46,130,0.35);
  --tier-ribbon: var(--avion-teal);
  --tier-ribbon-2: var(--avion-sky-1);
}
.tier-project {
  --tier-bg: var(--avion-teal);
  --tier-bg-soft: #d8eef5;
  --tier-dot: rgba(255,255,255,0.55);
  --tier-ribbon: var(--avion-navy);
  --tier-ribbon-2: var(--avion-sky-2);
}
.tier-memoriam {
  --tier-bg: #c5c8d6;
  --tier-bg-soft: #ecedf2;
  --tier-dot: rgba(45,46,130,0.35);
  --tier-ribbon: var(--avion-navy);
  --tier-ribbon-2: var(--ink-3);
}

/* Memoriam tag */
.memoriam-tag {
  display: inline-block;
  font-family: var(--font-display); font-weight: 900; font-size: 14px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 4px;
}

/* ============ Closing CTA ============ */
.closing-cta {
  background: var(--avion-navy);
  color: #fff;
  padding: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 80px);
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(53,168,224,0.25), transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(29,112,183,0.30), transparent 55%);
  pointer-events: none;
}
.closing-cta > * { position: relative; z-index: 1; }
.closing-cta h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1; letter-spacing: -0.015em;
  color: #fff; margin: 0 0 18px;
  max-width: 740px; margin-left: auto; margin-right: auto;
}
.closing-cta .italic-accent--invert { color: var(--avion-sky-2); }
.closing-cta p {
  color: #fff;
  font-size: 17px; max-width: 600px; margin: 0 auto 32px;
}
.closing-cta .contact-line {
  margin-top: 22px;
  font-size: 14px;
  font-family: var(--font-display); font-weight: 900;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
}
.closing-cta .contact-line a { color: var(--avion-sky-2); }
.closing-cta .contact-line a:hover { color: #fff; }

/* ============ Reveal anim ============ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .team-grid--principals,
  .team-grid--affiliates,
  .team-grid--all { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .story-grid,
  .story-grid--text { grid-template-columns: 1fr; gap: 32px; }
  .story-lede-col { position: static; }
  .story-napkin { position: static; max-width: 420px; margin: 0 auto; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid,
  .team-grid--partners,
  .team-grid--principals,
  .team-grid--affiliates,
  .team-grid--all { grid-template-columns: repeat(3, 1fr); }
  .team-grid--project { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .wwa-hero-meta { grid-template-columns: repeat(2, 1fr); }
  .mission-callout { flex-direction: column; gap: 12px; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid,
  .team-grid--partners,
  .team-grid--principals,
  .team-grid--affiliates,
  .team-grid--project,
  .team-grid--all { grid-template-columns: repeat(2, 1fr); }
}

/* ============ What our people share ============ */
.people-share {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; margin: 0 0 88px;
}
.people-share-h {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(26px, 2.7vw, 38px); line-height: 1.14;
  letter-spacing: -0.01em; color: var(--avion-navy); margin: 16px 0 14px;
}
.people-share-lede {
  font-family: var(--font-serif); font-style: italic;
  font-size: 19px; line-height: 1.5; color: var(--ink-2); margin: 0 0 26px;
  max-width: 460px;
}
.people-facets { list-style: none; margin: 0; padding: 0; }
.people-facets li {
  display: grid; grid-template-columns: 184px 1fr; gap: 22px;
  padding: 18px 0; border-top: 1px solid var(--line); align-items: baseline;
}
.people-facets li:last-child { border-bottom: 1px solid var(--line); }
.facet-key {
  font-family: var(--font-display); font-weight: 900;
  font-size: 16px; color: var(--avion-navy);
}
.facet-val { font-size: 15px; line-height: 1.55; color: var(--ink-2); }

.people-candids {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.candid {
  margin: 0; border-radius: 6px; min-height: 168px;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(134,203,236,0.18), transparent 60%),
    linear-gradient(135deg, #eceef4, #dfe3ec);
  border: 1px dashed rgba(45,46,130,0.28);
  display: flex; align-items: flex-end; padding: 14px;
  position: relative; overflow: hidden;
}
.candid::before {
  content: ""; position: absolute; top: 16px; left: 16px;
  width: 22px; height: 22px; border-radius: 4px;
  border: 2px solid rgba(45,46,130,0.3);
  background:
    linear-gradient(rgba(45,46,130,0.3), rgba(45,46,130,0.3)) 4px 11px / 14px 2px no-repeat;
}
.candid--tall { grid-row: span 2; min-height: 0; }
.candid-cap {
  font-family: var(--font-display); font-weight: 900; font-size: 14px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--avion-blue);
}
@media (max-width: 860px) {
  .people-share { grid-template-columns: 1fr; gap: 36px; }
  .people-facets li { grid-template-columns: 1fr; gap: 4px; }
  .candid--tall { grid-row: auto; min-height: 168px; }
}
