/* one39.co: Who We Are page - restyled toward the original One39 design language (2026-08).
   Band rhythm: dark statement hero -> WHITE story -> CREAM values -> WHITE team bands ->
   photo nation band -> footer. Page-scoped (.ww-); shared chrome + .btn system in site.css. */

body.page-who-we-are {
  background: #fff;
  color: #0e0807;
}

/* ---------- shared bits ---------- */
.ww-eyebrow {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark, #8a6f38);
  margin: 0 0 18px;
}

.ww-rule {
  width: 96px;
  height: 2px;
  background: #c6ac74;
  margin: 34px 0;
  transform-origin: left center;
}
.ww-rule--small { width: 56px; margin: 18px 0 22px; }

/* Entrance settle (hero): staggered by --d, triggered by body.ww-loaded */
.ww-settle {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--d, 0) * 90ms);
}
body.ww-loaded .ww-settle { opacity: 1; transform: none; }

/* Scroll reveals - same curve + duration as home/coaching */
.ww-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.ww-reveal.is-in { opacity: 1; transform: none; }

/* No-JS + reduced motion: everything visible, nothing moves */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  .ww-settle, .ww-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .ww-card:hover { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- HERO: dark statement band, original type ---------- */
.ww-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem; /* nav-safe */
  background: #0e0807;
  color: #fff;
  overflow: hidden;
}
.ww-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
/* split composition (2026-08-26): FBCG Sunday-service photo bleeds to the top and
   right edges; duotone (B&W + warm dark scrim) to match the site photo treatment */
.ww-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
}
.ww-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 30%;
  display: block;
  filter: grayscale(1) contrast(1.04) brightness(0.92);
}
.ww-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0e0807 0%, rgba(14,8,7,0.55) 26%, rgba(14,8,7,0.22) 55%, rgba(14,8,7,0.3) 100%),
    linear-gradient(0deg, rgba(198,172,116,0.14), rgba(198,172,116,0.14));
}
.ww-hero .ww-eyebrow {
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  letter-spacing: 0.3em;
}
.ww-hero-title {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(3rem, 5.6vw, 5rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
}
.ww-hero-title em {
  font-style: normal;
  color: #c6ac74;
}
.ww-hero-sub {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin: 0 0 36px;
}
.ww-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- STORY - WHITE band ---------- */
.ww-story {
  background: #fff;
  color: #0e0807;
  padding: 100px 0;
}
.ww-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.ww-story-block + .ww-story-block { margin-top: 56px; }
.ww-story-lede {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: #0e0807;
  margin: 0;
}
.ww-story-lede em { font-style: normal; color: var(--gold-dark, #8a6f38); font-weight: 500; }

/* 3-up editorial mosaic: dominant lobby shot + two stacked moments,
   consistent duotone (B&W + warm gold wash, matching the hero treatment) */
.ww-story-photos {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: clamp(420px, 38vw, 560px);
}
.ww-story-photo {
  position: relative;
  margin: 0;
  border-radius: 3px;
  overflow: hidden;
}
.ww-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.05) brightness(0.96);
}
.ww-story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(198,172,116,0.16), rgba(198,172,116,0.16));
  pointer-events: none;
}
.ww-story-photo--main { grid-row: 1 / 3; }
.ww-story-photo--main img { object-position: 62% 45%; }
.ww-story-photo--top img { object-position: 50% 30%; }
.ww-story-photo--bottom img { object-position: 50% 40%; }

/* ---------- VALUES - CREAM band ---------- */
.ww-values {
  background: var(--cream, #f4efe8);
  color: #0e0807;
  padding: 88px 0 96px;
}
.ww-values-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.ww-values .ww-eyebrow { text-align: center; color: #6f5b2d; }
.ww-values-grid {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(14,8,7,0.15);
  border-left: 1px solid rgba(14,8,7,0.15);
}
.ww-value {
  border-right: 1px solid rgba(14,8,7,0.15);
  border-bottom: 1px solid rgba(14,8,7,0.15);
  padding: 32px 30px 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.25s;
}
.ww-value:hover { background: rgba(198,172,116,0.12); }
.ww-value-num {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-variant-numeric: tabular-nums;
  /* darker than --gold-dark: #8a6f38 is only 4.16:1 on this cream bg (audit R2) */
  color: #6f5b2d;
}
.ww-value-num::after {
  content: "";
  width: 22px;
  height: 1px;
  background: #c6ac74;
}
.ww-value-name {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  /* Round C item 9: sized so the longest name ("Passionately Transformational",
     384px at the old 21px) holds ONE line in the 299px tile at 1280 AND 1440 —
     all six tiles level at every width */
  font-size: clamp(15px, 1.15vw, 16px);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #0e0807;
  /* wrap between words only — never break mid-word (Round B item 14) */
  hyphens: none;
}
/* one-line positioning gloss per value (Round B item 15) */
.ww-value-desc {
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 400;
  color: #3f3833;
  max-width: 30em;
  margin-top: -4px;
}

/* ---------- TEAM - WHITE bands ---------- */
.ww-team {
  background: #fff;
  color: #0e0807;
  padding: 84px 0 64px;
  scroll-margin-top: 88px;
}
.ww-team--consultants { padding-top: 48px; }
.ww-team-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
}
.ww-team-title {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0e0807;
  max-width: 980px;
  margin: 0 0 18px;
}
.ww-team-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #3f3833;
  max-width: 560px;
  margin: 0;
}

/* group headers get the sitewide eyebrow treatment (13px / 500 / 0.28em / gold) */
.ww-band-head { margin: 44px 0 22px; display: flex; align-items: baseline; gap: 18px; }
.ww-team--consultants .ww-band-head { margin-top: 0; }
.ww-band-title {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark, #8a6f38);
  margin: 0;
}
.ww-band-head::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(14,8,7,0.12);
  align-self: center;
}

/* centered flex rows: incomplete last rows (7 = 5+2, 9 = 5+4) read intentional */
.ww-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.ww-grid .ww-card { flex: 0 1 calc(20% - 11.2px); min-width: 196px; }

/* Card = a button (opens the bio lightbox) */
.ww-card {
  appearance: none;
  background: #fff;
  border: 1px solid rgba(14,8,7,0.14);
  border-radius: 3px;
  padding: 0;
  margin: 0;
  text-align: left;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ww-card:hover,
.ww-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(198,172,116,0.7);
  box-shadow: 0 14px 30px -18px rgba(14,8,7,0.3);
}
.ww-card-photo {
  display: block;
  position: relative;
  width: 62%;
  margin: 20px auto 0;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream, #f4efe8);
  box-shadow: 0 0 0 1px rgba(198,172,116,0.5);
}
.ww-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.ww-card:hover .ww-card-photo img { transform: scale(1.04); }

.ww-card-photo .ww-initials,
.ww-lightbox-media .ww-initials {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--cream, #f4efe8);
  color: var(--gold-dark, #8a6f38);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.ww-card-meta {
  display: block;
  padding: 14px 14px 4px;
  text-align: center;
}
.ww-card-name {
  display: block;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0e0807;
  line-height: 1.2;
}
.ww-card-role {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark, #8a6f38);
  margin-top: 6px;
  /* uniform 2-line slot whether the role runs 1 or 2 lines, so every card's
     name/role/READ BIO rhythm matches (Round B item 17) */
  line-height: 1.45;
  min-height: 2.9em;
}
.ww-card-more {
  display: block;
  margin-top: auto; /* pin to card base so equal-height rows have no dead slab */
  padding: 10px 14px 15px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark, #8a6f38);
  opacity: 0.75;
  transition: opacity 0.25s;
}
.ww-card:hover .ww-card-more,
.ww-card:focus-visible .ww-card-more { opacity: 1; }

/* ---------- NATION / CLOSING CTA - photo band ---------- */
.ww-nation {
  position: relative;
  min-height: 620px;
  max-height: 860px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #0e0807 url("/assets/images/gathered/web/wwa-nation-congregation-2048.jpg") center 30% / cover no-repeat;
}
@media (max-width: 900px) {
  .ww-nation { background-image: url("/assets/images/gathered/web/wwa-nation-congregation-1200.jpg"); }
}
.ww-nation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,8,7,0.5) 0%, rgba(14,8,7,0.2) 38%, rgba(14,8,7,0.8) 100%),
    linear-gradient(90deg, rgba(14,8,7,0.45) 0%, rgba(14,8,7,0) 55%),
    linear-gradient(0deg, rgba(198,172,116,0.12), rgba(198,172,116,0.12));
  /* warm duotone: desaturate the cool-toned congregation photo to match the
     hero/story treatment (graceful no-op where backdrop-filter is unsupported) */
  -webkit-backdrop-filter: grayscale(1) contrast(1.04) brightness(0.95);
  backdrop-filter: grayscale(1) contrast(1.04) brightness(0.95);
}
.ww-nation-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 60px 78px;
}
.ww-nation .ww-eyebrow {
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  letter-spacing: 0.3em;
}
.ww-nation-title {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.25rem, 3.8vw, 3.6rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  max-width: 820px;
  margin: 0 0 20px;
}
.ww-nation-sub {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin: 0 0 30px;
}
.ww-nation-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- BIO LIGHTBOX - light panel to match the white team band ---------- */
.ww-lightbox {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.ww-lightbox[hidden] { display: none; }
.ww-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14,8,7,0.7);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ww-lightbox.is-open .ww-lightbox-backdrop { opacity: 1; }
.ww-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(86vh, 720px);
  background: #fff;
  color: #0e0807;
  border: 1px solid rgba(198,172,116,0.5);
  border-radius: 3px;
  display: grid;
  grid-template-columns: 340px 1fr;
  /* minmax(0,1fr) row: without it the implicit auto row grows past max-height and
     the bio's overflow-y:auto never engages (audit R2 blocker) */
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: opacity 0.28s ease, transform 0.28s ease;
  outline: none;
}
.ww-lightbox.is-open .ww-lightbox-panel { opacity: 1; transform: none; }
.ww-lightbox-media {
  background: var(--cream, #f4efe8);
  min-height: 100%;
}
.ww-lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ww-lightbox-body {
  padding: 44px 44px 36px;
  overflow-y: auto;
}
.ww-lightbox-body .ww-eyebrow { color: var(--gold-dark, #8a6f38); }
.ww-lightbox-name {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #0e0807;
  margin: 0;
  line-height: 1.05;
}
.ww-lightbox-bio p {
  font-size: 16px;
  line-height: 1.7;
  color: #3f3833;
  margin: 0 0 1em;
}
.ww-lightbox-bio p:last-child { margin-bottom: 0; }
.ww-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid rgba(14,8,7,0.25);
  background: #fff;
  color: #0e0807;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ww-lightbox-close:hover { background: #0e0807; border-color: #0e0807; color: #fff; }

/* Scroll lock while lightbox open */
html.ww-lb-open, html.ww-lb-open body { overflow: hidden; }

/* Cursor accent styles are injected by shared /js/cursor.js */

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .ww-grid .ww-card { flex-basis: calc(25% - 10.5px); min-width: 180px; }
  .ww-values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ww-story-inner { grid-template-columns: 1fr; gap: 56px; }
  .ww-story-photos { max-width: 680px; height: clamp(420px, 62vw, 540px); }
}
@media (max-width: 720px) {
  .ww-hero { padding: 8.5rem 0 0; min-height: 0; max-height: none; flex-direction: column; align-items: stretch; }
  .ww-hero-media {
    position: static;
    width: 100%;
    height: 240px;
    margin-top: 44px;
  }
  .ww-hero-media img { object-position: 60% 24%; }
  .ww-hero-media::after {
    background:
      linear-gradient(180deg, rgba(14,8,7,0.55) 0%, rgba(14,8,7,0.15) 40%, rgba(14,8,7,0.35) 100%),
      linear-gradient(0deg, rgba(198,172,116,0.14), rgba(198,172,116,0.14));
  }
  .ww-hero-inner, .ww-story-inner, .ww-values-inner, .ww-team-inner { padding-left: 22px; padding-right: 22px; }
  .ww-nation-inner { padding: 100px 22px 56px; }
  .ww-hero-title { font-size: clamp(2.25rem, 10vw, 3rem); }
  .ww-hero-sub { font-size: 16px; }
  .ww-story { padding: 72px 0; }
  .ww-story-block + .ww-story-block { margin-top: 40px; }
  .ww-story-photos { gap: 10px; height: clamp(340px, 96vw, 460px); }
  .ww-values { padding: 68px 0 76px; }
  .ww-values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ww-value { padding: 20px 16px 22px; gap: 10px; }
  .ww-value-name { font-size: 14px; hyphens: none; }
  .ww-value-desc { font-size: 13px; margin-top: -2px; }
  /* Round C item 8: close the ~140px dead seam between the last leadership card
     and the CONSULTANTS rule at 390 — the two bands hand off without a stall */
  .ww-team { padding: 60px 0 20px; }
  .ww-team--consultants { padding-top: 12px; padding-bottom: 56px; }
  .ww-grid { gap: 12px; }
  .ww-grid .ww-card { flex-basis: calc(50% - 6px); min-width: 0; }
  .ww-card-meta { padding: 13px 14px 4px; }
  .ww-card-name { font-size: 16px; }
  .ww-card-role { font-size: 11px; letter-spacing: 0.05em; }
  .ww-card-more { padding: 8px 14px 14px; opacity: 1; transform: none; font-size: 10px; }
  /* balance the 2-col grid's orphan rows: an odd last card goes full width with a
     matched-size photo, so the band ends on a designed row (Round B item 16) */
  .ww-grid .ww-card:nth-child(odd):last-child { flex-basis: 100%; }
  .ww-grid .ww-card:nth-child(odd):last-child .ww-card-photo { width: 30%; max-width: 128px; }
  .ww-nation { min-height: 520px; align-items: flex-end; }
  .ww-nation-sub { font-size: 16px; }
  /* Lightbox: stacked, photo on top */
  .ww-lightbox { padding: 14px; }
  .ww-lightbox-panel {
    grid-template-columns: 1fr;
    grid-template-rows: 240px minmax(0, 1fr);
    max-height: 92dvh;
  }
  .ww-lightbox-media img { object-position: center 22%; }
  .ww-lightbox-body { padding: 26px 22px 24px; }
}

/* Round B item 14: at phone widths a 2-col cell cannot hold "TRANSFORMATIONAL"
   unbroken at any readable size — go single column, keep the type comfortable */
@media (max-width: 480px) {
  .ww-values-grid { grid-template-columns: 1fr; }
  .ww-value { padding: 18px 18px 20px; gap: 8px; }
  .ww-value-name { font-size: 15px; }
}

/* long-role variant: keeps every role to one line (Desmond) */
.ww-card-role--long { font-size: 10px; letter-spacing: 0.05em; white-space: nowrap; }

/* Headshot framing in the circular card crop (retuned 2026-09-10).
   Every source is square and the card box is square, so object-fit:cover gives a
   perfect fit with no overflow — object-position has nothing to move. The only
   lever is scale + transform-origin, where the origin percentage is the point of
   the photo that stays pinned. Values were set by rendering all 16 against the
   circle and checking each head clears the arc; the old rule anchored to the top
   and clipped the top of eleven people's heads. */
.ww-card[data-member="keath-storm"] .ww-card-photo img {
  transform: scale(1.34);
  transform-origin: 50% 12%;
}
.ww-card[data-member="keath-storm"]:hover .ww-card-photo img { transform: scale(1.38); }
.ww-card[data-member="kylie-hayes"] .ww-card-photo img {
  transform: scale(1.04);
  transform-origin: 50% 18%;
}
.ww-card[data-member="kylie-hayes"]:hover .ww-card-photo img { transform: scale(1.08); }
.ww-card[data-member="desmond-mack"] .ww-card-photo img {
  transform: scale(1.22);
  transform-origin: 50% 14%;
}
.ww-card[data-member="desmond-mack"]:hover .ww-card-photo img { transform: scale(1.26); }
.ww-card[data-member="angie-storm"] .ww-card-photo img {
  transform: scale(1.42);
  transform-origin: 50% 8%;
}
.ww-card[data-member="angie-storm"]:hover .ww-card-photo img { transform: scale(1.46); }
.ww-card[data-member="daniel-mitchell"] .ww-card-photo img {
  transform: scale(1.1);
  transform-origin: 50% 16%;
}
.ww-card[data-member="daniel-mitchell"]:hover .ww-card-photo img { transform: scale(1.14); }
.ww-card[data-member="isaac-coles"] .ww-card-photo img {
  transform: scale(1.06);
  transform-origin: 50% 18%;
}
.ww-card[data-member="isaac-coles"]:hover .ww-card-photo img { transform: scale(1.1); }
.ww-card[data-member="jordan-miller"] .ww-card-photo img {
  transform: scale(1.08);
  transform-origin: 50% 16%;
}
.ww-card[data-member="jordan-miller"]:hover .ww-card-photo img { transform: scale(1.12); }
.ww-card[data-member="kenneth-leonard"] .ww-card-photo img {
  transform: none;
  object-position: center top;
}
.ww-card[data-member="kenneth-leonard"]:hover .ww-card-photo img { transform: scale(1.03); }
.ww-card[data-member="kyle-oneal"] .ww-card-photo img {
  transform: none;
  object-position: center top;
}
.ww-card[data-member="kyle-oneal"]:hover .ww-card-photo img { transform: scale(1.03); }
.ww-card[data-member="trammel-orr"] .ww-card-photo img {
  transform: scale(1.06);
  transform-origin: 50% 18%;
}
.ww-card[data-member="trammel-orr"]:hover .ww-card-photo img { transform: scale(1.1); }


/* Circle consistency (2026-09-14).
   The sixteen headshots came from sixteen different photographers. Six have
   near-black backgrounds (Chris, Kenneth, Kyle O'Neal at pure black) and read as
   hard black discs on the white card; two are pure white and disappear into it
   entirely. Nothing unified them.

   Feathering the outer edge of every circle into the card's cream does: the dark
   portraits stop being discs, the white ones gain a visible edge, and the grid
   reads as one set without touching the source files or washing out any face. */
.ww-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 48%,
    rgba(244,239,232,0) 58%,
    rgba(244,239,232,0.30) 78%,
    rgba(244,239,232,0.72) 92%,
    rgba(244,239,232,0.96) 100%);
}
/* Ring sits above the feather so the edge stays crisp. */
.ww-card-photo { box-shadow: 0 0 0 1px rgba(198,172,116,0.55), inset 0 0 0 1px rgba(255,255,255,0.35); }
.ww-card:hover .ww-card-photo::after { background: radial-gradient(circle at 50% 48%,
    rgba(244,239,232,0) 62%,
    rgba(244,239,232,0.24) 80%,
    rgba(244,239,232,0.66) 93%,
    rgba(244,239,232,0.94) 100%); }


/* Team members without a bio on file (2026-09-17). The card still shows the
   person, but it is not a button — no dead click, no "Read bio" that opens an
   empty panel. Swap back to a button the moment a bio arrives. */
.ww-card--static { cursor: default; }
.ww-card--static:hover { transform: none; }
.ww-card--static:hover .ww-card-photo img { transform: scale(1.04); }

/* Team Member cards render at scale 1 — the crop is already the full short edge
   of the source, so any transform would only zoom back in. (2026-09-17) */
.ww-card--static .ww-card-photo img,
.ww-card[data-member="april-barber"] .ww-card-photo img,
.ww-card[data-member="jason-maxwell"] .ww-card-photo img,
.ww-card[data-member="aaron-dickinson"] .ww-card-photo img,
.ww-card[data-member="kyle-wall"] .ww-card-photo img { transform: none; }
.ww-card--static:hover .ww-card-photo img,
.ww-card[data-member="april-barber"]:hover .ww-card-photo img,
.ww-card[data-member="jason-maxwell"]:hover .ww-card-photo img,
.ww-card[data-member="aaron-dickinson"]:hover .ww-card-photo img,
.ww-card[data-member="kyle-wall"]:hover .ww-card-photo img { transform: scale(1.03); }
