/* ===========================
   EXPERIENCE
   =========================== */
.experience { color: var(--paper); }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 2px solid var(--paper);
  background: var(--ink);
  margin-bottom: 56px;
  width: fit-content;
  max-width: 100%;
}
.filter {
  background: transparent;
  border: 0;
  border-right: 2px solid var(--paper);
  color: var(--paper);
  padding: 14px 22px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 150ms, color 150ms;
}
.filter:last-child { border-right: 0; }
.filter:hover { background: var(--paper); color: var(--ink); }
.filter.is-active { background: var(--pop); color: var(--ink); }
.filter__count {
  font-size: 9px;
  border: 1px solid currentColor;
  padding: 2px 5px;
  letter-spacing: 0.08em;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--paper);
}
.job {
  border-bottom: 2px solid var(--paper);
  transition: background 150ms;
}
.job:hover { background: rgba(255,255,255,0.03); }
.job.is-open { background: rgba(255, 45, 135, 0.06); }

.job__head {
  width: 100%;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  cursor: pointer;
}
.job__head-left { display: grid; gap: 8px; min-width: 0; }
.job__tag {
  color: var(--pop);
  font-size: 11px;
  margin-bottom: 4px;
}
.job__org-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.job__org {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--paper);
  text-transform: lowercase;
  font-weight: 900;
  transition: color 150ms;
}
.job:hover .job__org { color: var(--pop); }
.job__city {
  color: var(--sky);
  font-size: 11px;
}
.job__role {
  font-size: var(--fs-body-l);
  font-weight: 500;
  color: var(--paper);
}
.job__dept {
  color: rgba(242, 239, 230, 0.65);
  font-size: 11px;
}
.job__head-right {
  display: grid;
  gap: 16px;
  justify-items: end;
  align-content: start;
}
.job__dates {
  color: var(--sky);
  font-size: 12px;
  text-align: right;
}
.job__toggle {
  position: relative;
  width: 36px;
  height: 36px;
  border: 2px solid var(--paper);
  background: transparent;
  transition: background 150ms, border-color 150ms;
}
.job__toggle-bar {
  position: absolute;
  background: var(--paper);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 2px;
  transition: opacity 150ms, background 150ms;
}
.job__toggle-bar--v {
  width: 2px; height: 16px;
}
.is-open .job__toggle { background: var(--pop); border-color: var(--pop); }
.is-open .job__toggle-bar { background: var(--ink); }
.is-open .job__toggle-bar--v { opacity: 0; }

.job__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}
.job.is-open .job__body { grid-template-rows: 1fr; }
.job__body-inner {
  overflow: hidden;
  display: grid;
  gap: 20px;
  padding-right: clamp(0px, 8vw, 80px);
}
.job.is-open .job__body-inner {
  padding-bottom: 36px;
}
.job__blurb {
  margin: 0;
  font-size: var(--fs-body-l);
  color: var(--sky);
  max-width: 720px;
}
.job__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 820px;
}
.job__bullet {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--paper);
}
.job__bullet-mark {
  color: var(--pop);
  font-family: var(--font-mono);
  font-weight: 600;
}

@media (max-width: 720px) {
  .job__head {
    grid-template-columns: 1fr;
  }
  .job__head-right {
    justify-items: start;
    grid-auto-flow: column;
    align-items: center;
  }
}

/* ===========================
   QUOTE BAND
   =========================== */
.quote-band {
  background: var(--pop);
  color: var(--ink);
  padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px);
}
.quote-band__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: clamp(32px, 5vw, 56px);
}
.quote-band__rail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
}
.quote-band__rail--end {
  border-bottom: 0;
  border-top: 2px solid var(--ink);
  padding-bottom: 0;
  padding-top: 16px;
}
.quote-band__text {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: clamp(40px, 7vw, 108px);
  margin: 0;
  text-wrap: balance;
}
.quote-band__under {
  background-image: linear-gradient(transparent 72%, var(--ink) 72%, var(--ink) 88%, transparent 88%);
  background-repeat: no-repeat;
  padding: 0 0.05em;
}

/* ===========================
   COMMUNITY
   =========================== */
.community { color: var(--paper); }

/* — quilt photo — */
.quilt {
  margin: 0 0 56px;
  display: grid;
  gap: 16px;
}
.quilt__frame {
  position: relative;
  border: 2px solid var(--paper);
  overflow: hidden;
  background: var(--ink);
}
.quilt__img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 70vh;
  object-fit: cover;
  object-position: center 35%;
}
.quilt__plate {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--pop);
  color: var(--ink);
  padding: 22px 28px;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  max-width: 460px;
  display: grid;
  gap: 8px;
}
.quilt__plate-kicker { font-size: 11px; }
.quilt__plate-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  text-transform: lowercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  font-weight: 900;
  color: var(--ink);
}
.quilt__plate-emph {
  background: var(--ink);
  color: var(--pop);
  padding: 0 0.12em;
}
.quilt__caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--paper);
  opacity: 0.85;
  font-size: 11px;
}

@media (max-width: 720px) {
  .quilt__plate { padding: 16px 18px; max-width: 86%; }
}

.naacp {
  border: 2px solid var(--paper);
  background: var(--ink);
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  gap: 28px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.naacp::before {
  content: "★";
  position: absolute;
  right: -20px;
  bottom: -60px;
  font-size: 300px;
  line-height: 1;
  color: var(--pop);
  opacity: 0.12;
  pointer-events: none;
}
.naacp__stamp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--paper);
  color: var(--pop);
}
.naacp__star-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pop);
}
.naacp__org {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 140px);
  text-transform: lowercase;
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--paper);
}
.naacp__sub {
  color: var(--pop);
  font-size: 0.6em;
}
.naacp__blurb {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  max-width: 720px;
  color: var(--paper);
  margin: 0;
}
.naacp__foot {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 2px solid var(--paper);
}
.naacp__status { color: var(--pop); }

.community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--paper);
}
@media (max-width: 820px) {
  .community__grid { grid-template-columns: 1fr; }
}
.board-card {
  padding: clamp(28px, 3vw, 40px);
  border-right: 2px solid var(--paper);
  display: grid;
  gap: 16px;
  transition: background 150ms;
}
.board-card:last-child { border-right: 0; }
.board-card:hover { background: var(--ink); }
@media (max-width: 820px) {
  .board-card { border-right: 0; border-bottom: 2px solid var(--paper); }
  .board-card:last-child { border-bottom: 0; }
}
.board-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--paper);
}
.board-card__role { color: var(--pop); }
.board-card__dates { color: var(--sky); }
.board-card__org {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  text-transform: lowercase;
  letter-spacing: -0.025em;
  line-height: 1.0;
  font-weight: 900;
  color: var(--paper);
}
.board-card__blurb {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(242, 239, 230, 0.78);
}
